Use config:base
but only run groups I define
#11412
-
I'd like a way to disable all default enabled packages from upgrading while extending I tried using a {
"matchPackagePatterns": [".*"],
"enabled": false
} A caveat to this is when configuring via the initial
Any ideas what I am doing wrong? See |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 17 replies
-
I don't think I understand your use case. Can you describe it in more detail? |
Beta Was this translation helpful? Give feedback.
-
Oh sick! I didn't know there was a dashboard 🎉 . I moved this out of the thread @viceice Debug logs
|
Beta Was this translation helpful? Give feedback.
-
Solution: {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"ignorePaths": ["./.github/**"],
"enabledManagers": ["npm"],
"baseBranches": ["master"],
"separateMajorMinor": false,
"rangeStrategy": "bump",
"semanticCommits": "enabled",
"vulnerabilityAlerts":
{
"enabled": false
},
"packageRules": [
{
"matchPackagePatterns": [".*"],
"enabled": false
},
{
"groupName": "@elastic/eui",
"matchPackageNames": ["@elastic/eui", "@elastic/datemath"],
"reviewers": ["team:datavis"],
"labels": ["dependencies"],
"enabled": true
},
{
"matchPackageNames": ["@elastic/eui", "@elastic/datemath"],
"matchUpdateTypes": ["major", "minor"],
"matchBaseBranches": ["master"],
"automerge": true
}
]
} |
Beta Was this translation helpful? Give feedback.
Solution: