We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fda8fef + 89b6fdc commit 94ece99Copy full SHA for 94ece99
.github/workflows/complex.yml
@@ -44,12 +44,12 @@ jobs:
44
45
complex-status:
46
if: ${{ always() }}
47
- needs: [third]
+ needs: [first, second, third]
48
runs-on: ubuntu-latest
49
steps:
50
- name: Successful
51
if: ${{ !(contains(needs.*.result, 'failure')) }}
52
run: exit 0
53
- name: Failing
54
if: ${{ (contains(needs.*.result, 'failure')) }}
55
- run: exit 0
+ run: exit 1
.github/workflows/simple.yml
@@ -31,4 +31,4 @@ jobs:
31
32
33
34
0 commit comments