File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -21,20 +21,27 @@ jobs:
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- uses : fountainhead/action-wait-for-check@5a908a24814494009c4bb27c242ea38c93c593be
24
+ id : helm-ci
24
25
with :
25
26
checkName : helm-ci
26
27
ref : ${{ github.event.merge_group.head_ref }}
27
28
timeoutSeconds : 1800
28
29
token : ${{ secrets.ACTION_TOKEN }}
29
30
- uses : fountainhead/action-wait-for-check@5a908a24814494009c4bb27c242ea38c93c593be
31
+ if : ${{ steps.helm-ci.outputs.conclusion == 'success' }}
32
+ id : integration-test
30
33
with :
31
34
checkName : integration-test
32
35
ref : ${{ github.event.merge_group.head_ref }}
33
36
timeoutSeconds : 1800
34
37
token : ${{ secrets.ACTION_TOKEN }}
35
38
- uses : fountainhead/action-wait-for-check@5a908a24814494009c4bb27c242ea38c93c593be
39
+ if : ${{ steps.integration-test.outputs.conclusion == 'success' }}
40
+ id : coverage
36
41
with :
37
42
checkName : coverage
38
43
ref : ${{ github.event.merge_group.head_ref }}
39
44
timeoutSeconds : 1800
40
45
token : ${{ secrets.ACTION_TOKEN }}
46
+ - if : ${{ steps.coverage.outputs.conclusion != 'success' }}
47
+ run : exit 1
You can’t perform that action at this time.
0 commit comments