We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f6da7 commit 75a8054Copy full SHA for 75a8054
.github/workflows/IntegrationTest.yml
@@ -35,7 +35,7 @@ jobs:
35
integration-gate:
36
name: "IntegrationTest"
37
needs: "integration-test"
38
- if: "${{ always() }}"
+ if: "${{ always() && needs.integration-test.result != 'skipped' }}"
39
runs-on: "ubuntu-latest"
40
steps:
41
- 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