summaryrefslogtreecommitdiff
path: root/.github/workflows/macos_build.yml
diff options
context:
space:
mode:
authorPatrick Lewis <pat@lo5t.com>2021-06-14 02:05:48 -0700
committerGitHub <noreply@github.com>2021-06-14 11:05:48 +0200
commitec2d155094e6ef96844aee5f4b6e9455201462d6 (patch)
tree837d29bb0e73e7414a7da522924ccbcbd9ffd248 /.github/workflows/macos_build.yml
parent4532ef4c7a9dda1e5b4ade7e6a94f13d76e7851b (diff)
feat(CI): limit workflow concurrency (#6332)
Diffstat (limited to '.github/workflows/macos_build.yml')
-rw-r--r--.github/workflows/macos_build.yml4
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: