From 121c6d9a0a3d06118edecefbaa99957b1c450fe3 Mon Sep 17 00:00:00 2001 From: krzywon Date: Thu, 7 May 2026 10:05:36 -0400 Subject: [PATCH] Port cancel on concurrent actions to the nightly build workflow --- .github/workflows/nightly-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index a938f58fec..c4c0b6e92b 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -21,6 +21,11 @@ jobs: os: [ ubuntu-latest] needs: reuse_main_ci + # Stop existing workflows (this includes + concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + env: GH_REPO: ${{ github.repository }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}