From 44d2b7b64660b8e6c91e53b69853061f0fd88b85 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 17 Oct 2025 09:25:17 +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