ci: use github.sha for concurrency

This commit is contained in:
Ivan Dyachkov 2023-07-20 17:36:47 +02:00
parent ab0aedd501
commit e3e28d9b41
5 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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