From 4eea7ab9163fb8031eafaf393733b2e88df46528 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 17 Oct 2025 09:28:19 +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 81f94a5..ab132b2 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