Skip to content

Commit

Permalink
stop any in progress PR when change is pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
saienduri committed Oct 3, 2024
1 parent b359269 commit 4dc6c93
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/run_bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ on:
schedule:
- cron: "0 9 * * *"

concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
# queued and in-progress runs for the same PR (presubmit) or commit
# (postsubmit). The workflow name is prepended to avoid conflicts between
# different workflows.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true

jobs:
benchmark:
runs-on: mi300
Expand Down

0 comments on commit 4dc6c93

Please sign in to comment.