[build] remove overly complicated renovate workflow#17525
Merged
Conversation
…built-in features
Contributor
Review Summary by QodoSimplify dependency workflow with Renovate branch-based testing
WalkthroughsDescription• Simplify dependency update workflow using Renovate's built-in branch creation • Remove complex multi-step orchestration in favor of automatic branch-based testing • Add new ci-renovate-rbe.yml workflow to test and commit dependency updates • Update Renovate configuration to create branches instead of pull requests Diagramflowchart LR
A["Renovate creates<br/>renovate/* branches"] --> B["ci-renovate-rbe<br/>workflow triggers"]
B --> C["Repin dependencies<br/>and format"]
C --> D["Commit changes<br/>to branch"]
D --> E["Run RBE tests"]
E --> F["Run GitHub CI"]
File Changes1. .github/workflows/ci-rbe.yml
|
Contributor
Code Review by Qodo
1. Force-push branch race
|
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.
🔗 Related Issues
#17504 was not a good approach (shocking I made it too complicated)
Turns out we can adjust renovate not to actually create PRs but just to create branches we can run tests against
💥 What does this PR do?
This is just to prove out the approach:
🔧 Implementation Notes
This is the better alternative
🤖 AI assistance
💡 Additional Considerations
Follow on is to: