We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6a63b commit 43eda37Copy full SHA for 43eda37
1 file changed
.github/workflows/reusable-storage-independant-tests.yml
@@ -123,10 +123,9 @@ jobs:
123
124
- name: Make Final Test report
125
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'
+ !cancelled()
+ && ((github.event_name == 'push') || (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch')
+ || (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure'))
130
timeout-minutes: 1
131
uses: dorny/test-reporter@v2.1.1
132
with:
0 commit comments