Skip to content

Commit d5eee3d

Browse files
committed
Apply test_gate_skip_on_skipped patch
1 parent c30cdff commit d5eee3d

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