From bb80dde66d51c820be6c594c0bacc56d6d5a3dfa Mon Sep 17 00:00:00 2001 From: Bianca Henderson Date: Fri, 26 Jun 2026 11:41:08 -0400 Subject: [PATCH] Fix workflow concurrency issue (#1159) --- .github/workflows/all_green_check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/all_green_check.yaml b/.github/workflows/all_green_check.yaml index 1a71c1f0..2a266a72 100644 --- a/.github/workflows/all_green_check.yaml +++ b/.github/workflows/all_green_check.yaml @@ -2,7 +2,7 @@ name: all_green concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} + group: ${{ github.head_ref || github.ref }} cancel-in-progress: true on: # yamllint disable-line rule:truthy