Include workflow name in the context ref (#22728)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
9139f4be78
Коммит
5cc49cf881
2
.github/workflows/channels-ci.yml
поставляемый
2
.github/workflows/channels-ci.yml
поставляемый
@@ -7,7 +7,7 @@ on:
|
|||||||
- mono-repo*
|
- mono-repo*
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
cancel-in-progress: ${{ !contains( github.ref , 'heads/ref/master') }}
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
2
.github/workflows/ci.yml
поставляемый
2
.github/workflows/ci.yml
поставляемый
@@ -11,7 +11,7 @@ env:
|
|||||||
go-version: "1.19.5"
|
go-version: "1.19.5"
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
cancel-in-progress: ${{ !contains( github.ref , 'heads/ref/master') }}
|
||||||
jobs:
|
jobs:
|
||||||
check-mocks:
|
check-mocks:
|
||||||
name: Check mocks
|
name: Check mocks
|
||||||
|
|||||||
2
.github/workflows/codeql-analysis.yml
поставляемый
2
.github/workflows/codeql-analysis.yml
поставляемый
@@ -2,7 +2,7 @@ name: "CodeQL"
|
|||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
cancel-in-progress: ${{ !contains( github.ref , 'heads/ref/master') }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|||||||
2
.github/workflows/e2e-tests-ci.yml
поставляемый
2
.github/workflows/e2e-tests-ci.yml
поставляемый
@@ -7,7 +7,7 @@ on:
|
|||||||
- mono-repo*
|
- mono-repo*
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
cancel-in-progress: ${{ !contains( github.ref , 'heads/ref/master') }}
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
4
.github/workflows/scorecards-analysis.yml
поставляемый
4
.github/workflows/scorecards-analysis.yml
поставляемый
@@ -5,6 +5,10 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '44 6 * * *'
|
- cron: '44 6 * * *'
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: ${{ !contains( github.ref , 'heads/ref/master') }}
|
||||||
|
|
||||||
# Declare default permissions as read only.
|
# Declare default permissions as read only.
|
||||||
permissions: read-all
|
permissions: read-all
|
||||||
|
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user