add concurrency limitation to gh actions (#22638)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
176a58617d
Коммит
5c857e9df3
3
.github/workflows/channels-ci.yml
поставляемый
3
.github/workflows/channels-ci.yml
поставляемый
@@ -5,6 +5,9 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- mono-repo*
|
- mono-repo*
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
3
.github/workflows/ci.yml
поставляемый
3
.github/workflows/ci.yml
поставляемый
@@ -7,6 +7,9 @@ on:
|
|||||||
- cloud
|
- cloud
|
||||||
- release-*
|
- release-*
|
||||||
- mono-repo*
|
- mono-repo*
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
jobs:
|
jobs:
|
||||||
check-mocks:
|
check-mocks:
|
||||||
name: Check mocks
|
name: Check mocks
|
||||||
|
|||||||
4
.github/workflows/codeql-analysis.yml
поставляемый
4
.github/workflows/codeql-analysis.yml
поставляемый
@@ -1,5 +1,9 @@
|
|||||||
name: "CodeQL"
|
name: "CodeQL"
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
|
|||||||
3
.github/workflows/e2e-ci.yml
поставляемый
3
.github/workflows/e2e-ci.yml
поставляемый
@@ -5,6 +5,9 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- mono-repo*
|
- mono-repo*
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user