From 4a0e1b3c4b1f3c719960be80427ed21dc8396d62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=CC=8Cimon=20S=CC=8Cesta=CC=81k?= Date: Mon, 23 Feb 2026 12:49:43 +0000 Subject: [PATCH] fix(docs): prevent deploy and cleanup jobs from cancelling each other Include event_name in concurrency group so push-triggered deploys and delete-triggered cleanups run independently. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index d25238a..828c5b8 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -19,7 +19,7 @@ permissions: contents: write concurrency: - group: deploy-docs-${{ github.ref }} + group: deploy-docs-${{ github.event_name }}-${{ github.ref }} cancel-in-progress: true jobs: