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.
This commit is contained in:
Nubenetes Bot
2026-05-21 12:34:39 +02:00
parent 3b0be772bb
commit f47fd17ade

View File

@@ -28,7 +28,7 @@ permissions:
concurrency:
group: v2-builder-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: false
jobs:
build-and-pr: