Skip to content

Commit 364656a

Browse files
committed
Change final report step condition
1 parent 90fa2da commit 364656a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/reusable-storage-dependant-tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,9 @@ jobs:
180180

181181
- name: Make Final Test report
182182
if: |
183-
!cancelled() && ((github.event_name == 'push' && (steps.reprocessing.outcome != 'cancelled' && steps.complex_tests.outcome != 'cancelled'))
184-
|| (github.event_name == 'pull_request' && (steps.reprocessing.outcome != 'cancelled' && steps.complex_tests.outcome != 'cancelled'))
185-
|| (github.event_name == 'workflow_dispatch' && (steps.reprocessing.outcome != 'cancelled' && steps.complex_tests.outcome != 'cancelled'))
186-
|| (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure'))
183+
!cancelled()
184+
&& ((github.event_name == 'push') || (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch')
185+
|| (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure'))
187186
timeout-minutes: 1
188187
uses: dorny/test-reporter@v2.1.1
189188
with:

0 commit comments

Comments
 (0)