ci: use github.sha for concurrency
This commit is contained in:
parent
ab0aedd501
commit
e3e28d9b41
|
@ -1,7 +1,7 @@
|
|||
name: Build docker image for test
|
||||
|
||||
concurrency:
|
||||
group: docker-test-${{ github.event_name }}-${{ github.ref }}
|
||||
group: docker-test-${{ github.event_name }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Build slim packages
|
||||
|
||||
concurrency:
|
||||
group: slim-${{ github.event_name }}-${{ github.ref }}
|
||||
group: slim-${{ github.event_name }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Run Configuration tests
|
||||
|
||||
concurrency:
|
||||
group: conftest-${{ github.event_name }}-${{ github.ref }}
|
||||
group: conftest-${{ github.event_name }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Run test case
|
||||
|
||||
concurrency:
|
||||
group: test-${{ github.event_name }}-${{ github.ref }}
|
||||
group: test-${{ github.event_name }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Build slim packages
|
||||
|
||||
concurrency:
|
||||
group: spellcheck-${{ github.event_name }}-${{ github.ref }}
|
||||
group: spellcheck-${{ github.event_name }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
|
|
Loading…
Reference in New Issue