File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -172,10 +172,9 @@ jobs:
172172
173173 - name : Make Final Test report
174174 if : |
175- (github.event_name == 'push' && (steps.reprocessing.outcome != 'cancelled' && steps.complex_tests.outcome != 'cancelled'))
176- || (github.event_name == 'pull_request' && (steps.reprocessing.outcome != 'cancelled' && steps.complex_tests.outcome != 'cancelled'))
177- || (github.event_name == 'workflow_dispatch' && (steps.reprocessing.outcome != 'cancelled' && steps.complex_tests.outcome != 'cancelled'))
178- || (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure')
175+ !cancelled()
176+ && ((github.event_name == 'push') || (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch')
177+ || (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure'))
179178 timeout-minutes : 1
180179 uses : dorny/test-reporter@v2.1.1
181180 with :
Original file line number Diff line number Diff line change @@ -123,10 +123,9 @@ jobs:
123123
124124 - name : Make Final Test report
125125 if : |
126- (github.event_name == 'push' && steps.complex_tests.outcome != 'cancelled')
127- || (github.event_name == 'pull_request' && steps.complex_tests.outcome != 'cancelled')
128- || (github.event_name == 'workflow_dispatch' && steps.complex_tests.outcome != 'cancelled')
129- || steps.complex_tests.outcome == 'failure'
126+ !cancelled()
127+ && ((github.event_name == 'push') || (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch')
128+ || (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure'))
130129 timeout-minutes : 1
131130 uses : dorny/test-reporter@v2.1.1
132131 with :
You can’t perform that action at this time.
0 commit comments