From 887b94eb1dc4f31715a306a5f324b3230c1925f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20H=C3=B8jlund=20Larsen?= Date: Tue, 22 Aug 2023 11:37:24 +0200 Subject: [PATCH] Update .github/workflows/nodebug.yml to be concurrent --- .github/workflows/nodebug.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/nodebug.yml b/.github/workflows/nodebug.yml index fcf552b..5dd7db1 100644 --- a/.github/workflows/nodebug.yml +++ b/.github/workflows/nodebug.yml @@ -16,13 +16,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 +