From 402333d5ec2f9eed0f2584555936361f39d2f93e Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 3 Jul 2025 16:58:51 -0500 Subject: [PATCH] ci: concurrency protect tag flow We just need to run it once properly and dont need to keep running it for every push until the last. Signed-off-by: Austin Horstman --- .github/workflows/tag-maintainers.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tag-maintainers.yml b/.github/workflows/tag-maintainers.yml index 7cf4b3e0..c3b75d2b 100644 --- a/.github/workflows/tag-maintainers.yml +++ b/.github/workflows/tag-maintainers.yml @@ -2,6 +2,9 @@ name: Tag Module Maintainers on: pull_request_target: types: [opened, ready_for_review, reopened, synchronize] +concurrency: + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.run_id }} + cancel-in-progress: true permissions: contents: read pull-requests: write