Skip to content

chore(config): migrate config .github/renovate.json#951

Merged
Wikid82 merged 2 commits intofeature/beta-releasefrom
main
Apr 15, 2026
Merged

chore(config): migrate config .github/renovate.json#951
Wikid82 merged 2 commits intofeature/beta-releasefrom
main

Conversation

@Wikid82
Copy link
Copy Markdown
Owner

@Wikid82 Wikid82 commented Apr 15, 2026

No description provided.

@github-advanced-security
Copy link
Copy Markdown
Contributor

You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool.

What Enabling Code Scanning Means:

  • The 'Security' tab will display more code scanning analysis results (e.g., for the default branch).
  • Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results.
  • You will be able to see the analysis results for the pull request's branch on this overview once the scans have completed and the checks have passed.

For more information about GitHub Code Scanning, check out the documentation.

Copilot AI review requested due to automatic review settings April 15, 2026 17:22
@Wikid82 Wikid82 merged commit 080e17d into feature/beta-release Apr 15, 2026
62 of 65 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Migrates the Renovate configuration to updated keys/pattern-based settings under .github/renovate.json.

Changes:

  • Switched Renovate base branch targeting from baseBranches to baseBranchPatterns.
  • Updated GitHub Actions manager configuration to use managerFilePatterns.
  • Adjusted the “MEGAZORD” package rule matching from matchPackagePatterns to matchPackageNames.

Comment thread .github/renovate.json
Comment on lines +249 to +251
"managerFilePatterns": [
"/^\\.github/skills/examples/.*\\.ya?ml$/"
]
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"managerFilePatterns"with a string like"/^...$/"is likely not interpreted as intended by Renovate. For manager configs, Renovate typically expectsfileMatchwith regex *strings* (no leading/trailing/delimiters), e.g."^\.github/skills/examples/.*\.ya?ml$"`. As written, this may prevent the github-actions manager from matching any files.

Copilot uses AI. Check for mistakes.
Comment thread .github/renovate.json
Comment on lines +264 to +265
"matchPackageNames": [
"*"
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replacing "matchPackagePatterns": ["*"] with "matchPackageNames": ["*"] changes semantics and likely won’t match all packages. matchPackageNames generally matches explicit names (or regex-style values), so "*" may only match a literal package named "*". To match everything, keep matchPackagePatterns (e.g. ".*") or use a regex-style entry for names (depending on the Renovate schema supported here).

Suggested change
"matchPackageNames": [
"*"
"matchPackagePatterns": [
".*"

Copilot uses AI. Check for mistakes.
Comment thread .github/renovate.json
"helpers:pinGitHubActionDigests"
],
"baseBranches": [
"baseBranchPatterns": [
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using baseBranchPatterns with 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 keep baseBranches for exact branch names.

Suggested change
"baseBranchPatterns": [
"baseBranches": [

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants