Skip to content
Snippets Groups Projects
Commit ced7c62b authored by Maxim Kokryashkin's avatar Maxim Kokryashkin Committed by Yaroslav Lobankov
Browse files

ci: fix integration concurrency group

In commit 13ac5daf ("ci: fix step parameters for reusable
runs") the integration workflow was made reusable, but
concurrency group pattern modification that was done for other
workflows made reusable in the same patch was forgotten. This
patch fixes the mentioned issue.

NO_DOC=CI
NO_TEST=CI
NO_CHANGELOG=CI
parent 09bb3e96
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ concurrency:
startsWith(github.ref, 'refs/heads/release/') ||
startsWith(github.ref, 'refs/tags/')) &&
format('{0}-{1}', github.run_id, github.run_attempt) ||
format('{0}-{1}', github.workflow, github.ref) }}
format('{0}-{1}-integration', github.workflow, github.ref) }}
cancel-in-progress: true
jobs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment