[github] Cancel previous actions if PR or branch was updated

It will help to avoid waiting for available free runners

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-03-11 14:14:27 +01:00 committed by Alexander Borsuk
parent 4ad4a1e164
commit e960237b4f
4 changed files with 20 additions and 0 deletions

View file

@ -25,6 +25,11 @@ on:
- track_generator/**
- xcode/**
# Cancels previous jobs if the same branch or PR was updated again.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Android Lint

View file

@ -24,6 +24,11 @@ on:
- tools/**
- track_generator/**
# Cancels previous jobs if the same branch or PR was updated again.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ios-check:
name: Build iOS

View file

@ -22,6 +22,11 @@ on:
- '!tools/python/SiblingKiller.py'
- xcode/**
# Cancels previous jobs if the same branch or PR was updated again.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linux-no-unity:
name: Linux no unity build

View file

@ -22,6 +22,11 @@ on:
- '!tools/python/SiblingKiller.py'
- xcode/**
# Cancels previous jobs if the same branch or PR was updated again.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
macos-matrix:
name: macOS builds and tests