Skip to content

Commit a06ec82

Browse files
authored
Apply test_gate_skip_on_skipped patch (#47)
1 parent 68a90a9 commit a06ec82

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