Skip to content

Commit

Permalink
Fix Test Reports fail frequently on master (#3497)
Browse files Browse the repository at this point in the history
  • Loading branch information
DybekK authored Jan 31, 2024
1 parent 7814e72 commit a2e011b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ permissions:
jobs:
report:
runs-on: ubuntu-latest
# If the workflow run was skipped or cancelled this action would fail, generating a test report is unnecessary.
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }}
steps:
- uses: dorny/test-reporter@v1
with:
Expand Down

0 comments on commit a2e011b

Please sign in to comment.