From a12b075e076e39dc522f04b5aeeeebe89887737b Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Mon, 13 May 2024 21:33:53 +0200 Subject: [PATCH] ci/macos: avoid concurrent workflow runs on the same ref --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 670aaab9b..670797385 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,9 @@ name: build +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + on: [push, pull_request] permissions: