Stop canceling in-progress nightly builds (#1856)

Change cancel-in-progress from true to false so concurrent nightly
runs queue instead of being killed.

Co-authored-by: Lawrence Chen <lawrencecchen@users.noreply.github.com>
This commit is contained in:
Lawrence Chen 2026-03-20 00:57:56 -07:00 committed by GitHub
parent 9844913ea1
commit 80da57fc10
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,9 +13,8 @@ on:
concurrency:
group: nightly-build-${{ github.ref_name }}
# Only the newest nightly matters. Cancel older runs so a fresh main push
# does not sit behind an outdated build that would be discarded anyway.
cancel-in-progress: true
# Queue concurrent runs instead of canceling them so no build is lost.
cancel-in-progress: false
permissions:
contents: write