Skip to content

Commit

Permalink
Don't retry if workflow was cancelled.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsimantov committed Oct 18, 2023
1 parent b594f3e commit 1f3e554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,7 @@ jobs:
name: "attempt-retry"
needs: [check_and_prepare, summarize_results]
runs-on: ubuntu-20.04
if: ${{ failure() && needs.check_and_prepare.outputs.trigger == 'scheduled_trigger' }}
if: ${{ failure() && !cancelled() && needs.check_and_prepare.outputs.trigger == 'scheduled_trigger' }}
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 1f3e554

Please sign in to comment.