diff --git a/.github/workflows/nodebug.yml b/.github/workflows/nodebug.yml index 3c46776..7a84e53 100644 --- a/.github/workflows/nodebug.yml +++ b/.github/workflows/nodebug.yml @@ -16,13 +16,21 @@ jobs: with: extra_resolve_options: ${{ github.events.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 +