github/workflows: Cancel when branch is updated.

This adds a concurrency section to all github workflows to cancel any
in progress workflow when a branch is updated. This should cancel any
ongoing or queued workflows, e.g. when a pull request is updated.

Signed-off-by: David Lechner <david@pybricks.com>
This commit is contained in:
David Lechner
2022-12-13 12:57:34 -06:00
committed by Damien George
parent 3c2d7563d2
commit 5608226cfd
24 changed files with 96 additions and 0 deletions

View File

@@ -12,6 +12,10 @@ on:
- 'ports/unix/**'
- 'ports/windows/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest