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
|
name: Build docker image for test
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: docker-test-${{ github.event_name }}-${{ github.ref }}
|
group: docker-test-${{ github.event_name }}-${{ github.sha }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: Build slim packages
|
name: Build slim packages
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: slim-${{ github.event_name }}-${{ github.ref }}
|
group: slim-${{ github.event_name }}-${{ github.sha }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: Run Configuration tests
|
name: Run Configuration tests
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: conftest-${{ github.event_name }}-${{ github.ref }}
|
group: conftest-${{ github.event_name }}-${{ github.sha }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: Run test case
|
name: Run test case
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: test-${{ github.event_name }}-${{ github.ref }}
|
group: test-${{ github.event_name }}-${{ github.sha }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: Build slim packages
|
name: Build slim packages
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: spellcheck-${{ github.event_name }}-${{ github.ref }}
|
group: spellcheck-${{ github.event_name }}-${{ github.sha }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
Loading…
Reference in New Issue