File tree Expand file tree Collapse file tree 12 files changed +29
-29
lines changed Expand file tree Collapse file tree 12 files changed +29
-29
lines changed Original file line number Diff line number Diff line change 65
65
env :
66
66
CONTAINER : ${{ inputs.container }}
67
67
68
- - if : always () && steps.setup-testspace.outcome == 'success'
68
+ - if : ${{ !cancelled () && steps.setup-testspace.outcome == 'success' }}
69
69
shell : bash
70
70
run : >-
71
71
testspace --verbose
74
74
env :
75
75
CONTAINER : ${{ inputs.container }}
76
76
77
- - if : always() && steps.test.outcome != 'skipped' && steps.test.outcome != ' cancelled'
77
+ - if : ${{ ! cancelled() }}
78
78
uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
79
79
with :
80
80
name : ${{ inputs.container }}-reports
Original file line number Diff line number Diff line change 19
19
- uses : ./.github/actions/eslint-stylish-problem-matcher
20
20
with :
21
21
enable : false
22
- if : ${{ always () && steps.eslint-problem-matcher.outcome == 'success' }}
22
+ if : ${{ !cancelled () && steps.eslint-problem-matcher.outcome == 'success' }}
Original file line number Diff line number Diff line change 17
17
- uses : ./.github/actions/generic-problem-matcher
18
18
with :
19
19
enable : false
20
- if : ${{ always () && steps.flake8-problem-matcher.outcome == 'success' }}
20
+ if : ${{ !cancelled () && steps.flake8-problem-matcher.outcome == 'success' }}
Original file line number Diff line number Diff line change 17
17
- uses : ./.github/actions/generic-problem-matcher
18
18
with :
19
19
enable : false
20
- if : ${{ always () && steps.markdownlint-problem-matcher.outcome == 'success' }}
20
+ if : ${{ !cancelled () && steps.markdownlint-problem-matcher.outcome == 'success' }}
Original file line number Diff line number Diff line change 20
20
- uses : ./.github/actions/generic-problem-matcher
21
21
with :
22
22
enable : false
23
- if : ${{ always () && steps.generic-problem-matcher.outcome == 'success' }}
23
+ if : ${{ !cancelled () && steps.generic-problem-matcher.outcome == 'success' }}
24
24
25
25
- shell : bash
26
26
run : |
32
32
33
33
- run : git reset --hard
34
34
shell : bash
35
- if : always()
35
+ if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change 17
17
- uses : ./.github/actions/generic-problem-matcher
18
18
with :
19
19
enable : false
20
- if : ${{ always () && steps.npm-problem-matcher.outcome == 'success' }}
20
+ if : ${{ !cancelled () && steps.npm-problem-matcher.outcome == 'success' }}
Original file line number Diff line number Diff line change 20
20
- uses : ./.github/actions/generic-problem-matcher
21
21
with :
22
22
enable : false
23
- if : ${{ always () && steps.generic-problem-matcher.outcome == 'success' }}
23
+ if : ${{ !cancelled () && steps.generic-problem-matcher.outcome == 'success' }}
24
24
25
25
- shell : bash
26
26
run : |
32
32
33
33
- run : git reset --hard
34
34
shell : bash
35
- if : always()
35
+ if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change 20
20
- uses : ./.github/actions/generic-problem-matcher
21
21
with :
22
22
enable : false
23
- if : ${{ always () && steps.generic-problem-matcher.outcome == 'success' }}
23
+ if : ${{ !cancelled () && steps.generic-problem-matcher.outcome == 'success' }}
24
24
25
25
- shell : bash
26
26
run : |
32
32
33
33
- run : git reset --hard
34
34
shell : bash
35
- if : always()
35
+ if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change 17
17
- uses : ./.github/actions/reuse-problem-matcher
18
18
with :
19
19
enable : false
20
- if : ${{ always () && steps.reuse-problem-matcher.outcome == 'success' }}
20
+ if : ${{ !cancelled () && steps.reuse-problem-matcher.outcome == 'success' }}
Original file line number Diff line number Diff line change 27
27
- uses : ./.github/actions/generic-problem-matcher
28
28
with :
29
29
enable : false
30
- if : ${{ always () && steps.tox-problem-matcher.outcome == 'success' }}
30
+ if : ${{ !cancelled () && steps.tox-problem-matcher.outcome == 'success' }}
You can’t perform that action at this time.
0 commit comments