-
Notifications
You must be signed in to change notification settings - Fork 592
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
feat(renovate): automerge PRs for patch updates #5252
base: master
Are you sure you want to change the base?
Conversation
/it-go |
@niki4 Did you able to test the changes in a fork or some other repo? |
.github/renovate.json
Outdated
"packageRules": [ | ||
{ | ||
"description": "Automerge non-major updates (versions >1.0.0)", | ||
"matchUpdateTypes": ["minor", "patch"], |
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.
I don't think updating minor versions is a good idea, as some open source projects don't follow semantic versioning. We can discuss in the daily tomorrow.
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.
matchUpdateTypes set to "patch" only (so, the automerge allowed for cases like "1.1.1 -> 1.1.2", but not minor "1.1.1->1.2.1" and not major "1.1.1->2.1.1" version upgrades).
Quality Gate passedIssues Measures |
/it-go |
Description
This PR including:
Before the change we had
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
in the PR description generated by renovatebot. After the change it should be🚦 Automerge: Enabled
Added Github Action workflow that triggers the "Go / integration-tests" workflow (which is a mandatory check) on each renovatebot PR update.
Enabled rollbackPrs - In case if author of the dependency will remove/revoke the latest version, a PR to downgrade the package will be created.
Notes:
Set up
To make the auto merge feature work, further configuration required:
References:
Checklist