From e12bad952af57a7c688aff71ec685bab8f797da1 Mon Sep 17 00:00:00 2001 From: Robin Date: Thu, 1 Aug 2024 16:41:19 -0400 Subject: [PATCH] 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. --- renovate.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index c9c73fa8e..10dfca5d2 100644 --- a/renovate.json +++ b/renovate.json @@ -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",