diff options
author | Patrick Lewis <pat@lo5t.com> | 2021-06-14 02:05:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 11:05:48 +0200 |
commit | ec2d155094e6ef96844aee5f4b6e9455201462d6 (patch) | |
tree | 837d29bb0e73e7414a7da522924ccbcbd9ffd248 /.github/workflows/macos_build.yml | |
parent | 4532ef4c7a9dda1e5b4ade7e6a94f13d76e7851b (diff) |
feat(CI): limit workflow concurrency (#6332)
Diffstat (limited to '.github/workflows/macos_build.yml')
-rw-r--r-- | .github/workflows/macos_build.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index d2456cf815..3117a5060e 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -6,6 +6,10 @@ on: pull_request: types: ['labeled'] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: macos-build: strategy: |