From 80da57fc106bd7d669632538f833e6726f1c4bf7 Mon Sep 17 00:00:00 2001 From: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Date: Fri, 20 Mar 2026 00:57:56 -0700 Subject: [PATCH] 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 --- .github/workflows/nightly.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 5cb26392..92ef8ece 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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