diff options
author | Patrick Lewis <pat@lo5t.com> | 2021-06-19 05:10:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-19 14:10:43 +0200 |
commit | fc10f1a72d2b718f39b4af5fa4aef83b5107204a (patch) | |
tree | 4d4e10585b4b6f19801c1ddec5ef6e015ddf4542 /.github/workflows/macos_build.yml | |
parent | f685fb10c2a7c71aa78dd8b303d69297866a2c56 (diff) |
fix(CI): limit concurrency group to PR's (#6419)
Diffstat (limited to '.github/workflows/macos_build.yml')
-rw-r--r-- | .github/workflows/macos_build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 3117a5060e..56debbb1a0 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -7,7 +7,7 @@ on: types: ['labeled'] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true jobs: |