Currently, the dependency dashboard lists a bunch of pending updates under a section called "Other branches". I'm not sure, but this sounds like one of the configs I extend from enables base branches other than only the default. To test, and make it explicit, set only the branches I really want checked. I'm adding the `release/.*` regex for now, even though I don't have any release process yet.
15 lines
326 B
Text
15 lines
326 B
Text
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
":combinePatchMinorReleases",
|
|
":enableVulnerabilityAlerts",
|
|
":rebaseStalePrs"
|
|
],
|
|
"prConcurrentLimit": 10,
|
|
"branchPrefix": "renovate/",
|
|
"baseBranches": [
|
|
"$default",
|
|
"/^release\\/.*/"
|
|
]
|
|
}
|