From 183c881ecbf5359fda95abccaa36afba1b3d993a Mon Sep 17 00:00:00 2001 From: mtfishman Date: Fri, 6 Mar 2026 09:43:45 -0500 Subject: [PATCH] Apply test_gate_skip_on_skipped patch --- .github/workflows/IntegrationTest.yml | 2 +- .github/workflows/Tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index 0640a07..5610f92 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -30,7 +30,7 @@ jobs: integration-gate: name: "IntegrationTest" needs: "integration-test" - if: "${{ always() }}" + if: "${{ always() && needs.integration-test.result != 'skipped' }}" runs-on: "ubuntu-latest" steps: - name: "Fail if any downstream integration test failed" diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index db43292..70f6c8d 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -43,7 +43,7 @@ jobs: tests-gate: name: "Tests" needs: "tests" - if: "${{ always() }}" + if: "${{ always() && needs.tests.result != 'skipped' }}" runs-on: "ubuntu-latest" steps: - name: "Fail if any matrix leg failed"