From a0f24342d564b69f8de404541521aa07938dd8d0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 5 May 2026 17:03:24 +0000 Subject: [PATCH 1/3] Initial plan From e351535ecbc7a4c466bc5d1e12289c512e772352 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 5 May 2026 17:08:18 +0000 Subject: [PATCH 2/3] Make image tag check against last release non-blocking --- .github/workflows/check-image-tags.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-image-tags.yaml b/.github/workflows/check-image-tags.yaml index f5214a87..785373fe 100644 --- a/.github/workflows/check-image-tags.yaml +++ b/.github/workflows/check-image-tags.yaml @@ -36,7 +36,10 @@ jobs: git checkout "$tag" - name: Check image tags (last release) - run: npx tsx build/check-image-tags.ts images + run: | + if ! npx tsx build/check-image-tags.ts images; then + echo "::warning::Image tag check against last release failed - templates may reference newer images not yet released" + fi check-image-tags-latest: name: Check Image Tags (Latest) From e0c8d4e994cfb79cf4c8d57ae39bc49c9962c0d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 5 May 2026 17:09:26 +0000 Subject: [PATCH 3/3] Ensure check step exits with success status --- .github/workflows/check-image-tags.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-image-tags.yaml b/.github/workflows/check-image-tags.yaml index 785373fe..33586a4b 100644 --- a/.github/workflows/check-image-tags.yaml +++ b/.github/workflows/check-image-tags.yaml @@ -40,6 +40,7 @@ jobs: if ! npx tsx build/check-image-tags.ts images; then echo "::warning::Image tag check against last release failed - templates may reference newer images not yet released" fi + exit 0 check-image-tags-latest: name: Check Image Tags (Latest)