From f47fd17ade91faec9d174a8c03c9a033edeb9e09 Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Thu, 21 May 2026 12:34:39 +0200 Subject: [PATCH] ci: enforce strict concurrency to prevent parallel processing leaks - Set cancel-in-progress to false for V2 Builder. - This ensures that if a workflow is triggered multiple times (e.g., via push and manual dispatch), subsequent runs will queue cleanly instead of attempting to cancel the running one, which was causing duplicate process ghosting and double API quota consumption. --- .github/workflows/agentic_v2_builder.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/agentic_v2_builder.yml b/.github/workflows/agentic_v2_builder.yml index f44e5c3d..9119ba25 100644 --- a/.github/workflows/agentic_v2_builder.yml +++ b/.github/workflows/agentic_v2_builder.yml @@ -28,7 +28,7 @@ permissions: concurrency: group: v2-builder-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: false jobs: build-and-pr: