From 18c2f9fea1d4dcb7352129641bbe56755f7dcedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20H=C3=B8jlund=20Larsen?= Date: Tue, 22 Aug 2023 11:37:23 +0200 Subject: [PATCH] Update .github/workflows/macos_mkspecs.yml to be concurrent --- .github/workflows/macos_mkspecs.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/macos_mkspecs.yml b/.github/workflows/macos_mkspecs.yml index 1cfd5b6..772b8bb 100644 --- a/.github/workflows/macos_mkspecs.yml +++ b/.github/workflows/macos_mkspecs.yml @@ -15,13 +15,21 @@ jobs: with: extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }} + # Cancel previous in-progress when pushing: https://stackoverflow.com/a/72408109 concurrency: + group: ${{ github.workflow }}-${{ github.ref || github.run_id }} + cancel-in-progress: true + +# Cancel previous in-progress when pushing: https://stackoverflow.com/a/72408109 concurrency: group: ${{ github.workflow }}-${{ github.ref || github.run_id }} cancel-in-progress: true + + # Cancel previous in-progress when pushing: https://stackoverflow.com/a/72408109 concurrency: group: ${{ github.workflow }}-${{ github.ref || github.run_id }} cancel-in-progress: true +