[GHA] concurrency fix (#20040)

* fixed cancelation issue in post-commits

* hardcoded os suffix

* added comments

* Update .github/workflows/linux.yml

* improved condition to support release branches
This commit is contained in:
Mikhail Ryzhov
2023-09-26 18:35:23 +03:00
committed by GitHub
parent 784cce37b3
commit 6f55feb592

View File

@@ -22,9 +22,11 @@ on:
- '**/conformance/**'
branches:
- master
- 'releases/**'
concurrency:
group: ${{ github.head_ref || github.run_id }}-linux
# github.ref is not unique in post-commit
group: ${{ github.event_name == 'push' && github.run_id || github.ref }}-linux
cancel-in-progress: true
jobs: