mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-16 19:52:25 +00: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:
|
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
|
||||||
|
|
4
.github/workflows/backend-e2e-tests.yml
vendored
4
.github/workflows/backend-e2e-tests.yml
vendored
|
@ -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
|
||||||
|
|
||||||
|
|
4
.github/workflows/backend-tests.yml
vendored
4
.github/workflows/backend-tests.yml
vendored
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue