mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
feat(ci): add concurrency config for more workflows
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
5eec977795
commit
6d0ab5261a
4 changed files with 16 additions and 0 deletions
4
.github/workflows/backend-docker.yml
vendored
4
.github/workflows/backend-docker.yml
vendored
|
@ -10,6 +10,10 @@ on:
|
|||
pull_request:
|
||||
branches: [ develop ]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
name: Check for backend changes
|
||||
|
|
4
.github/workflows/backend-e2e-tests.yml
vendored
4
.github/workflows/backend-e2e-tests.yml
vendored
|
@ -10,6 +10,10 @@ on:
|
|||
pull_request:
|
||||
branches: [ develop ]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
NODEJS_VERSION: 18
|
||||
|
||||
|
|
4
.github/workflows/backend-tests.yml
vendored
4
.github/workflows/backend-tests.yml
vendored
|
@ -11,6 +11,10 @@ on:
|
|||
pull_request:
|
||||
branches: [ develop ]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
NODEJS_VERSION: 18
|
||||
|
||||
|
|
|
@ -10,6 +10,10 @@ on:
|
|||
pull_request:
|
||||
branches: [ develop ]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
defaults:
|
||||
run:
|
||||
working-directory: frontend
|
||||
|
|
Loading…
Reference in a new issue