feat(ci): add concurrency config for more workflows

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2022-12-04 22:14:59 +01:00
parent 5eec977795
commit 6d0ab5261a
No known key found for this signature in database
4 changed files with 16 additions and 0 deletions

View file

@ -10,6 +10,10 @@ on:
pull_request: pull_request:
branches: [ develop ] branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
changes: changes:
name: Check for backend changes name: Check for backend changes

View file

@ -10,6 +10,10 @@ on:
pull_request: pull_request:
branches: [ develop ] branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env: env:
NODEJS_VERSION: 18 NODEJS_VERSION: 18

View file

@ -11,6 +11,10 @@ on:
pull_request: pull_request:
branches: [ develop ] branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env: env:
NODEJS_VERSION: 18 NODEJS_VERSION: 18

View file

@ -10,6 +10,10 @@ on:
pull_request: pull_request:
branches: [ develop ] branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults: defaults:
run: run:
working-directory: frontend working-directory: frontend