From 41c141e416b617a85a3884c3ed127722d1fa4c1e Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Fri, 15 May 2026 11:43:08 -0400 Subject: [PATCH] .github/workflows/releng-audit: group events to serialize executions This avoids confusion when several events are fired for e.g. label changes before the bot can validate each change is authorized. Signed-off-by: Patrick Donnelly Assisted-by: Gemini --- .github/workflows/releng-audit.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/releng-audit.yaml b/.github/workflows/releng-audit.yaml index 9a55784837cc..6fb507bbebf8 100644 --- a/.github/workflows/releng-audit.yaml +++ b/.github/workflows/releng-audit.yaml @@ -10,6 +10,11 @@ on: issue_comment: types: [created] +# Group concurrency by PR/Issue number to serialize executions and prevent race conditions +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number }} + cancel-in-progress: false + jobs: audit: name: Backport Audit -- 2.47.3