Skip to content

Commit 75a8054

Browse files
authored
Apply test_gate_skip_on_skipped patch (#91)
1 parent 35f6da7 commit 75a8054

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
@@ -35,7 +35,7 @@ jobs:
3535
integration-gate:
3636
name: "IntegrationTest"
3737
needs: "integration-test"
38-
if: "${{ always() }}"
38+
if: "${{ always() && needs.integration-test.result != 'skipped' }}"
3939
runs-on: "ubuntu-latest"
4040
steps:
4141
- 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)