ci: use git ref for workflow concurrency detection
This commit is contained in:
parent
a32b8fd21f
commit
ec75fa32cf
|
@ -1,7 +1,7 @@
|
|||
name: Push Entrypoint
|
||||
|
||||
concurrency:
|
||||
group: push-entrypoint-${{ github.event_name }}-${{ github.sha }}
|
||||
group: push-entrypoint-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Build and push docker images
|
||||
|
||||
concurrency:
|
||||
group: docker-build-${{ github.event_name }}-${{ github.sha }}
|
||||
group: docker-build-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Build docker image for test
|
||||
|
||||
concurrency:
|
||||
group: docker-test-build-${{ github.event_name }}-${{ github.sha }}
|
||||
group: docker-test-build-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Cross build packages
|
||||
|
||||
concurrency:
|
||||
group: build-packages-${{ github.event_name }}-${{ github.sha }}
|
||||
group: build-packages-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Build slim packages
|
||||
|
||||
concurrency:
|
||||
group: slim-${{ github.event_name }}-${{ github.sha }}
|
||||
group: slim-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Run Configuration tests
|
||||
|
||||
concurrency:
|
||||
group: conftest-${{ github.event_name }}-${{ github.sha }}
|
||||
group: conftest-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Run test case
|
||||
|
||||
concurrency:
|
||||
group: test-${{ github.event_name }}-${{ github.sha }}
|
||||
group: test-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Build slim packages
|
||||
name: Spellcheck
|
||||
|
||||
concurrency:
|
||||
group: spellcheck-${{ github.event_name }}-${{ github.sha }}
|
||||
group: spellcheck-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Static checks
|
||||
|
||||
concurrency:
|
||||
group: static-checks-${{ github.event_name }}-${{ github.sha }}
|
||||
group: static-checks-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
Loading…
Reference in New Issue