fix(checks): Add expression to allow renovate workflow run concurrency#199
Merged
chris3ware merged 4 commits intomainfrom Apr 17, 2025
Merged
fix(checks): Add expression to allow renovate workflow run concurrency#199chris3ware merged 4 commits intomainfrom
chris3ware merged 4 commits intomainfrom
Conversation
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
3ware-release Bot
pushed a commit
that referenced
this pull request
Apr 17, 2025
## [4.21.3](v4.21.2...v4.21.3) (2025-04-17) ### Bug Fixes * **checks:** Add expression to allow renovate workflow run concurrency ([#199](#199)) ([3801868](3801868))
Contributor
|
This PR is included in version 4.21.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The previous PR (#196) which added
${{ github.action.event }}to the concurrency group name has not worked. When called, the action event is empty which means the group name is not unique for different events. This results in cancellation of workflow runs for renovate PRs that are synchronizes and edited in quick succession.There is an open discussion for this issue: https://github.com/orgs/community/discussions/107552
To overcome this I have added a ternary operator that sets
cancel-in-progresstofalsefor the renovate bot.