.github: extend concurrency group to include workflow step (#892)

This commit is contained in:
Leopold Schabel 2022-03-03 21:16:28 +01:00 committed by GitHub
parent 087506dec6
commit 4511b7576c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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