We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2248e29 commit 9f78b19Copy full SHA for 9f78b19
.github/workflows/IntegrationTest.yml
@@ -32,7 +32,7 @@ jobs:
32
integration-gate:
33
name: "IntegrationTest"
34
needs: "integration-test"
35
- if: "${{ always() }}"
+ if: "${{ always() && needs.integration-test.result != 'skipped' }}"
36
runs-on: "ubuntu-latest"
37
steps:
38
- name: "Fail if any downstream integration test failed"
.github/workflows/Tests.yml
@@ -43,7 +43,7 @@ jobs:
43
tests-gate:
44
name: "Tests"
45
needs: "tests"
46
+ if: "${{ always() && needs.tests.result != 'skipped' }}"
47
48
49
- name: "Fail if any matrix leg failed"
0 commit comments