Skip to content

Commit 4908db1

Browse files
committed
Merge branch '7.0' into 7.1
2 parents a2e0410 + d4e7aa2 commit 4908db1

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

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

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

.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)