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