Skip to content

Commit

Permalink
[CI] Do not cancel an existing build for a scheduled run.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Mar 3, 2025
1 parent 56ada6c commit d53dadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

concurrency:
group: slow-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ github.event_name != 'schedule' }}

env:
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.java.installations.auto-detect=false -Dorg.gradle.warning.mode=fail'
Expand Down

0 comments on commit d53dadb

Please sign in to comment.