From 838877b35d98a0c2c279a2bdbe95ce9c53ab9a2a Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 17 Oct 2025 09:22:38 +0100 Subject: [PATCH] ci(ci): add concurrency config --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd45202..5508c50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,11 @@ on: - 'docs/**' - '*.md' +# This allows a subsequently queued workflow run to interrupt previous runs +concurrency: + group: "${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" + cancel-in-progress: true + permissions: contents: read