Skip to content

Commit

Permalink
Build concurrency for nightly and merge triggers (#688)
Browse files Browse the repository at this point in the history
This PR separates the concurrency groups for nightly and PR merge triggers, ensuring that nightlies aren't interrupted by PR merges canceling jobs.

See rapidsai/ops#2932.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #688
  • Loading branch information
bdice authored Nov 17, 2023
1 parent bd6ec7d commit 6cdf326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
default: nightly

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 6cdf326

Please sign in to comment.