From 7558f60a44ffb9a31e0319141b113f3de38674ff Mon Sep 17 00:00:00 2001 From: Matt Bishop Date: Fri, 19 Jan 2024 17:04:54 -0500 Subject: [PATCH] Fix Renovate config (#2945) --- .github/renovate.json | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 52e80afcf..cd01c8c00 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -8,16 +8,14 @@ ":pinAllExceptPeerDependencies", ":prConcurrentLimit10", ":rebaseStalePrs", - "schedule:weekends", - ":separateMajorReleases" + ":separateMajorReleases", + "group:monorepos", + "schedule:weekends" ], - "enabledManagers": ["cargo", "github-actions", "npm", "nuget"], + "enabledManagers": ["github-actions", "npm", "nuget"], + "commitMessagePrefix": "[deps]:", + "commitMessageTopic": "{{depName}}", "packageRules": [ - { - "groupName": "cargo minor", - "matchManagers": ["cargo"], - "matchUpdateTypes": ["minor", "patch"] - }, { "groupName": "gh minor", "matchManagers": ["github-actions"], @@ -32,6 +30,6 @@ "groupName": "nuget minor", "matchManagers": ["nuget"], "matchUpdateTypes": ["minor", "patch"] - }, + } ] }