ci: use git ref for workflow concurrency detection

This commit is contained in:
Ivan Dyachkov 2023-08-04 07:19:12 +02:00
parent a32b8fd21f
commit ec75fa32cf
9 changed files with 10 additions and 10 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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