We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9147711 commit fc6a9caCopy full SHA for fc6a9ca
.github/workflows/pull_request.yml
@@ -4,8 +4,14 @@ jobs:
4
success:
5
runs-on: ubuntu-latest
6
needs: [pull_request]
7
+ if: ${{ always() }}
8
steps:
- - run: true
9
+ - if: ${{ contains(needs.*.result, 'failure') }}
10
+ run: exit 1
11
+ - if: ${{ contains(needs.*.result, 'cancelled') }}
12
13
+ - if: ${{ contains(needs.*.result, 'skipped') }}
14
15
16
on:
17
pull_request:
.github/workflows/staging.yml
@@ -6,8 +6,14 @@ jobs:
needs: [pull_request, staging]
18
19
merge_group:
0 commit comments