Fix Renovate warning

Apparently Renovate doesn't really like it when you use a group: preset inside packageRules, instead of at the top level of the config. We do want to apply schedule:weekly only to the "all non-major dependencies" group though, so we need to write the group definition out by hand.
This commit is contained in:
Robin 2024-08-01 16:41:19 -04:00
parent f89342713a
commit e12bad952a

View File

@ -3,7 +3,10 @@
"extends": ["config:base"],
"packageRules": [
{
"extends": ["group:allNonMajor", "schedule:weekly"]
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchUpdateTypes": ["minor", "patch"],
"extends": ["schedule:weekly"]
},
{
"groupName": "GitHub Actions",