From e2fd5033c891755c9e7a9686f7665f0e5d8b47d5 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 23 Feb 2022 13:39:08 +0000 Subject: [PATCH] workflows/triage: fix concurrency. `github.ref` is always `master` for `pull_request_target` jobs so this needs to use `github.head_ref` instead to get the actual pull request branch. --- .github/workflows/triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 40ab96fb51..d564000047 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -14,7 +14,7 @@ on: permissions: {} -concurrency: triage-${{ github.ref }} +concurrency: triage-${{ github.head_ref }} jobs: review: