We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cc3437 commit a861017Copy full SHA for a861017
run-integration-test/action.yaml
@@ -314,7 +314,9 @@ runs:
314
315
- name: Extract Failed Tests
316
id: failed-tests
317
- if: steps.integration-test.conclusion == 'failure'
+ # The success() function is automatically used if no other status function is used.
318
+ # See https://docs.github.com/en/actions/reference/workflows-and-actions/expressions#failure-with-conditions
319
+ if: failure() && steps.integration-test.conclusion == 'failure'
320
shell: bash
321
run: |
322
# Only look at the last 200 lines of test output which should be more than enough to capture all test results
0 commit comments