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.
This commit is contained in:
Mike McQuaid 2022-02-23 13:39:08 +00:00
parent 6661f5b14d
commit e2fd5033c8
No known key found for this signature in database
GPG Key ID: 3338A31AFDB1D829

View File

@ -14,7 +14,7 @@ on:
permissions: {}
concurrency: triage-${{ github.ref }}
concurrency: triage-${{ github.head_ref }}
jobs:
review: