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