.github: extend concurrency group to include workflow step (#892)
This commit is contained in:
parent
087506dec6
commit
4511b7576c
|
@ -16,7 +16,7 @@ jobs:
|
||||||
# (unfortunately, we can't differentiate between temporary and permanent
|
# (unfortunately, we can't differentiate between temporary and permanent
|
||||||
# refs without duplicating the entire logic).
|
# refs without duplicating the entire logic).
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-tilt-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -50,7 +50,7 @@ jobs:
|
||||||
# The linter is slow enough that we want to run it on the self-hosted runner
|
# The linter is slow enough that we want to run it on the self-hosted runner
|
||||||
runs-on: tilt-kube-public
|
runs-on: tilt-kube-public
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-lint-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
Loading…
Reference in New Issue