-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(config): migrate config .github/renovate.json #951
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,10 +6,9 @@ | |||||||||
| ":separateMultipleMajorReleases", | ||||||||||
| "helpers:pinGitHubActionDigests" | ||||||||||
| ], | ||||||||||
| "baseBranches": [ | ||||||||||
| "baseBranchPatterns": [ | ||||||||||
| "feature/beta-release", | ||||||||||
| "development" | ||||||||||
|
|
||||||||||
| ], | ||||||||||
| "postUpdateOptions": ["npmDedupe"], | ||||||||||
| "timezone": "America/New_York", | ||||||||||
|
|
@@ -247,20 +246,24 @@ | |||||||||
| ], | ||||||||||
|
|
||||||||||
| "github-actions": { | ||||||||||
| "fileMatch": ["^\\.github/skills/examples/.*\\.ya?ml$"] | ||||||||||
| "managerFilePatterns": [ | ||||||||||
| "/^\\.github/skills/examples/.*\\.ya?ml$/" | ||||||||||
| ] | ||||||||||
|
Comment on lines
+249
to
+251
|
||||||||||
| }, | ||||||||||
|
|
||||||||||
| "packageRules": [ | ||||||||||
| { | ||||||||||
| "description": "THE MEGAZORD: Group ALL non-major updates (NPM, Docker, Go, Actions) into one PR", | ||||||||||
| "matchPackagePatterns": ["*"], | ||||||||||
| "matchUpdateTypes": [ | ||||||||||
| "minor", | ||||||||||
| "patch", | ||||||||||
| "pin", | ||||||||||
| "digest" | ||||||||||
| ], | ||||||||||
| "groupName": "non-major-updates" | ||||||||||
| "groupName": "non-major-updates", | ||||||||||
| "matchPackageNames": [ | ||||||||||
| "*" | ||||||||||
|
Comment on lines
+264
to
+265
|
||||||||||
| "matchPackageNames": [ | |
| "*" | |
| "matchPackagePatterns": [ | |
| ".*" |
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.
Using
baseBranchPatternswith unanchored values like"development"can unintentionally match branches that merely contain that substring (depending on Renovate’s pattern interpretation). If the intent is to target only the exact branches, prefer anchoring the patterns (e.g.^development$) or keepbaseBranchesfor exact branch names.