matchBaseBranches validation does not consider inherited baseBranchPatterns
#40298
-
How are you running Renovate?A Mend.io-hosted app Which platform you running Renovate on?GitHub.com Which version of Renovate are you using?42.69.1 Please tell us more about your question or problemI have a Renovate configuration in a repository that extends from a shared configuration (stored in a different repository): {
extends: ["github>Osmerion/.github//.github/renovate.json5"],
packageRules: [
{
description: "Disable Spring Boot major updates",
matchFileNames: ["gradle/build.versions.toml"],
matchBaseBranches: ["/^release/.*/"],
matchPackageNames: ["org.springframework.boot:**"],
matchUpdateTypes: ["major"],
enabled: false
}
]
}The validation incorrectly warns for See also: Logs (if relevant)Full debug logs below: Logs |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
So, you have @viceice @jamietanna wdyt?? Should we handle this? |
Beta Was this translation helpful? Give feedback.
this is currently by design. we would need to resolve the config before validation 😕