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