From 057af4056236f271ddf64743602abbad38fecde3 Mon Sep 17 00:00:00 2001 From: Sal Date: Sun, 16 Aug 2026 11:54:50 +0100 Subject: [PATCH] fix(ci): avoid reusable workflow concurrency deadlock --- .github/workflows/zsh-lint.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/zsh-lint.yml b/.github/workflows/zsh-lint.yml index 3abb59c25..d8cc24baa 100644 --- a/.github/workflows/zsh-lint.yml +++ b/.github/workflows/zsh-lint.yml @@ -15,10 +15,8 @@ on: permissions: {} -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - +# The calling workflow owns concurrency. Reusing its group here deadlocks +# GitHub Actions because the called workflow cannot acquire the active group. jobs: zsh-lint: name: Zsh Lint