Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/check-synchronization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
required: false
type: string
default: master
concurrency_suffix: # optional suffix to make the concurrency group unique per caller
required: false
type: string
default: ''
secrets:
upstream_reader_app_key:
required: false
Expand All @@ -31,7 +35,7 @@ on:
value: ${{ jobs.job_check_branches_sync.outputs.refs_synced }}

concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}${{ inputs.concurrency_suffix && format('-{0}', inputs.concurrency_suffix) || '' }}
Comment on lines -34 to +38
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did it like this so we do not have "-" at the end if suffix is "", just so future runs have identical concurency sufix as old ones if we do not set this field


jobs:
job_check_env_context:
Expand Down