-
Notifications
You must be signed in to change notification settings - Fork 13
refactor(ci/cd): extend to two parallel dependabot PRs #4975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
🔭🐙🐈 Test this branch here: https://db-ux-design-system.github.io/core-web/review/refactor-extend-to-two-parallel-dependabot-prs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR refactors the CI/CD pipeline concurrency configuration to allow up to two Dependabot PRs to run in parallel instead of running them sequentially. The change modifies the concurrency grouping logic to create two separate groups for Dependabot PRs based on the PR number modulo 2.
Key changes:
- Updates concurrency grouping to allow 2 parallel Dependabot PR executions
- Uses PR number modulo 2 to distribute Dependabot PRs across two groups
- Updates inline documentation to reflect the new parallel execution limit
Co-authored-by: Michael Kraus <[email protected]>
|
We sadly cannot use modulo or arithmetic in workflow expressions. |
This reverts commit fc06099.
Pull request was closed
Proposed changes
We'd like to not just run one but two dependabot PRs in parallel (e.g. if one pipeline is running after the merge to
main) and that for divide them into two groups.Types of changes
Further comments