Skip to content

Commit 43eda37

Browse files
committed
Change making final report condition
1 parent da6a63b commit 43eda37

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)