From c150b01f52bbbf9e7b2e168ec044163e874931d7 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 30 Jul 2024 16:28:06 -0400 Subject: [PATCH] Only apply the weekly schedule to non-major updates --- renovate.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index f6a820a0..75c9eeec 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,14 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base", "group:allNonMajor", "schedule:weekly"], - "semanticCommits": "disabled" + "extends": ["config:base"], + "semanticCommits": "disabled", + "packageRules": [ + { + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch", + "matchPackageNames": ["*"], + "matchUpdateTypes": ["minor", "patch"], + "extends": ["schedule:weekly"] + } + ] }