From a03fa90cbfd9390abc0a7018dca3d0cd9085f241 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Fri, 6 Mar 2026 09:40:31 -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 d6ad8153..4e089a2a 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -32,7 +32,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 db43292b..70f6c8da 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"