-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(config): migrate config .github/renovate.json #950
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
+250
|
||||||||||
| "managerFilePatterns": [ | |
| "/^\\.github/skills/examples/.*\\.ya?ml$/" | |
| "fileMatch": [ | |
| "^\\.github/skills/examples/.*\\.ya?ml$" |
Copilot
AI
Apr 15, 2026
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.
Replacing matchPackagePatterns: ["*"] with matchPackageNames: ["*"] likely changes semantics: matchPackageNames typically matches exact package names (or explicit names), so "*" may not function as a wildcard and may result in this rule matching nothing. If the goal is “all packages”, keep matchPackagePatterns: ["*"] (or use the documented “match all” approach for your Renovate version).
| "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.
baseBranches
is a well-known Renovate option, butbaseBranchPatternsis not (it may be ignored depending on Renovate version). If Renovate ignores this key, updates will run against the default base branch set rather than the intended branches. Prefer usingbaseBranches, or confirm (with docs/version in use) thatbaseBranchPatterns` is supported in your Renovate runtime.