Skip to content

Commit 3cf1b66

Browse files
authored
Apply test_gate_skip_on_skipped patch (#246)
1 parent be2e214 commit 3cf1b66

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/IntegrationTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
integration-gate:
3333
name: "IntegrationTest"
3434
needs: "integration-test"
35-
if: "${{ always() }}"
35+
if: "${{ always() && needs.integration-test.result != 'skipped' }}"
3636
runs-on: "ubuntu-latest"
3737
steps:
3838
- name: "Fail if any downstream integration test failed"

.github/workflows/Tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
tests-gate:
4444
name: "Tests"
4545
needs: "tests"
46-
if: "${{ always() }}"
46+
if: "${{ always() && needs.tests.result != 'skipped' }}"
4747
runs-on: "ubuntu-latest"
4848
steps:
4949
- name: "Fail if any matrix leg failed"

0 commit comments

Comments
 (0)