Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/container-and-chart/helm/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ version: 0.1.2
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
# It is recommended to use it with quotes..
appVersion: "0.1.1"
19 changes: 19 additions & 0 deletions .github/workflows/verify-skip.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024-2026 Defense Unicorns
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial

# Pass-through for the required "verify-test" status check on PRs that update
# container images and charts.

name: Test

on:
pull_request:
types: [milestoned, opened, reopened, synchronize]
paths:
- ".github/container-and-chart/**"

jobs:
verify-test:
runs-on: ubuntu-latest
steps:
- run: echo "No UDS package changes — skipping full test suite."
2 changes: 1 addition & 1 deletion tasks/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tasks:
- description: Reference Package UI Status Check
maxRetries: 30
cmd: |
STATUS=$(curl -L -o /dev/null -s -w "%{http_code}\n" https://reference-package.uds.dev)
STATUS=$(curl -L -o /dev/null -s -w "%{http_code}\n" https://blah.uds.dev)
echo "Reference Package system status: ${STATUS}"
if [ "$STATUS" != "200" ]; then
sleep 10
Expand Down
Loading