Skip to content

Commit 81a6851

Browse files
authored
Apply test_gate_skip_on_skipped patch (#56)
1 parent 07ba1a6 commit 81a6851

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/IntegrationTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
integration-gate:
3131
name: "IntegrationTest"
3232
needs: "integration-test"
33-
if: "${{ always() }}"
33+
if: "${{ always() && needs.integration-test.result != 'skipped' }}"
3434
runs-on: "ubuntu-latest"
3535
steps:
3636
- 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)