From 7d561e78ef7c8e09ca23ab822891f2006279cf0e Mon Sep 17 00:00:00 2001 From: Stephen Kilbourn Date: Tue, 30 Sep 2025 13:51:22 -0600 Subject: [PATCH] add workflow level concurrency to cancel in progress deploy if new commits occur --- .github/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d80f50f..896c41a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,6 +5,11 @@ on: branches: - main +# Ensure only one deployment runs at a time +concurrency: + group: pages-deploy + cancel-in-progress: true + jobs: build: name: Build Docusaurus