From 10df2521d92d5a63aea5a763b846237055b5d5ee Mon Sep 17 00:00:00 2001 From: Rhuan Barreto Date: Sun, 15 Mar 2026 22:48:44 +0100 Subject: [PATCH] fix(ci): prevent release workflow self-cancellation The push-triggered run was being cancelled by the subsequent issue_comment-triggered run due to cancel-in-progress: true. Switching to false so runs queue instead of cancelling each other. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb751b99..8f1b6a07 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: concurrency: group: release-${{ github.ref_name }} - cancel-in-progress: true + cancel-in-progress: false permissions: contents: write