From 725869834e5e773904937a90b7d2b7baf750e64e Mon Sep 17 00:00:00 2001 From: molecule-operator Date: Thu, 14 May 2026 04:30:57 +0000 Subject: [PATCH] fix(ci): add concurrency block to sop-checklist workflow (cancel stale runs) --- .gitea/workflows/sop-checklist.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/sop-checklist.yml b/.gitea/workflows/sop-checklist.yml index 72e33f04..fe86219f 100644 --- a/.gitea/workflows/sop-checklist.yml +++ b/.gitea/workflows/sop-checklist.yml @@ -67,6 +67,12 @@ name: sop-checklist +# Cancel any in-progress runs for the same PR to prevent +# stale runs from overwriting newer status contexts. +concurrency: + group: ${{ github.repository }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + # bp-required: yes ← emits sop-checklist / all-items-acked (pull_request) on: -- 2.52.0