From: Patrick Donnelly Date: Fri, 15 May 2026 15:43:08 +0000 (-0400) Subject: .github/workflows/releng-audit: group events to serialize executions X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=41c141e416b617a85a3884c3ed127722d1fa4c1e;p=ceph.git .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 --- 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