We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07ba1a6 commit 81a6851Copy full SHA for 81a6851
.github/workflows/IntegrationTest.yml
@@ -30,7 +30,7 @@ jobs:
30
integration-gate:
31
name: "IntegrationTest"
32
needs: "integration-test"
33
- if: "${{ always() }}"
+ if: "${{ always() && needs.integration-test.result != 'skipped' }}"
34
runs-on: "ubuntu-latest"
35
steps:
36
- 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