From f93fdfd327d06090334ecb00fd244006bb911c94 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 18 Dec 2025 20:33:54 -0600 Subject: [PATCH] fix(ci): use !cancelled() instead of always() for registry-ci The always() condition can cause registry-ci to report completion before all test-tool matrix jobs finish. Using !cancelled() ensures the job waits for all matrix tranches to complete. --- .github/workflows/registry.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/registry.yml b/.github/workflows/registry.yml index 3215791870..7bcb5d1b24 100644 --- a/.github/workflows/registry.yml +++ b/.github/workflows/registry.yml @@ -150,7 +150,7 @@ jobs: - build - list-changed-tools - test-tool - if: always() + if: ${{ !cancelled() }} steps: - name: Check CI job results run: |