From 53c5dbec739081173bcf067e5e1356a22eb090fe Mon Sep 17 00:00:00 2001 From: Molecule AI Infra-Runtime-BE Date: Mon, 18 May 2026 00:00:50 +0000 Subject: [PATCH] fix(ci): set cancel-in-progress=true on merge-queue workflow `cancel-in-progress: false` causes the Gitea Actions scheduler to freeze when a cron tick fires while a previous run is still executing. Pending entries accumulate indefinitely and no new runs dispatch. This was the root cause of the queue freeze during SEV-1 2026-05-17. Fixes: molecule-core#1447 Fixes: molecule-core#1413 Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/gitea-merge-queue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/gitea-merge-queue.yml b/.gitea/workflows/gitea-merge-queue.yml index 2ad090171..fe9e9651f 100644 --- a/.gitea/workflows/gitea-merge-queue.yml +++ b/.gitea/workflows/gitea-merge-queue.yml @@ -22,7 +22,7 @@ permissions: concurrency: group: gitea-merge-queue-${{ github.repository }} - cancel-in-progress: false + cancel-in-progress: true jobs: queue: -- 2.52.0