From 169d108baf32371f30d627575d1d178aed17ccb1 Mon Sep 17 00:00:00 2001 From: Philippe Matray Date: Mon, 9 Mar 2026 11:04:08 +0100 Subject: [PATCH 1/2] chore: standardize renovate config --- renovate.json | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/renovate.json b/renovate.json index 20532c2..685713d 100644 --- a/renovate.json +++ b/renovate.json @@ -1,16 +1,30 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "platformAutomerge": true, + "extends": ["config:recommended"], + "baseBranchPatterns": ["dev"], + "schedule": ["before 9am on Saturday"], + "timezone": "Europe/Brussels", + "labels": ["dependencies", "renovate"], "packageRules": [ { - "matchUpdateTypes": [ - "minor", - "patch" - ], - "automerge": true + "description": "Automerge minor and patch updates", + "matchUpdateTypes": ["minor", "patch"], + "automerge": true, + "automergeType": "pr" + }, + { + "description": "Group all NuGet minor/patch updates together", + "matchManagers": ["nuget"], + "matchUpdateTypes": ["minor", "patch"], + "groupName": "NuGet minor/patch updates" + }, + { + "description": "Group all NuGet major updates together", + "matchManagers": ["nuget"], + "matchUpdateTypes": ["major"], + "groupName": "NuGet major updates", + "dependencyDashboardApproval": true } - ] -} + ], + "platformAutomerge": true +} \ No newline at end of file From 62b98008b0c73bebedad65cbd2112c7745208ffb Mon Sep 17 00:00:00 2001 From: Philippe Matray Date: Mon, 9 Mar 2026 11:15:39 +0100 Subject: [PATCH 2/2] chore: fix renovate config for repo technologies --- renovate.json | 39 ++++++++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index 685713d..d11bbe8 100644 --- a/renovate.json +++ b/renovate.json @@ -1,27 +1,48 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"], - "baseBranchPatterns": ["dev"], - "schedule": ["before 9am on Saturday"], + "extends": [ + "config:recommended" + ], + "baseBranchPatterns": [ + "dev" + ], + "schedule": [ + "before 9am on Saturday" + ], "timezone": "Europe/Brussels", - "labels": ["dependencies", "renovate"], + "labels": [ + "dependencies", + "renovate" + ], "packageRules": [ { "description": "Automerge minor and patch updates", - "matchUpdateTypes": ["minor", "patch"], + "matchUpdateTypes": [ + "minor", + "patch" + ], "automerge": true, "automergeType": "pr" }, { "description": "Group all NuGet minor/patch updates together", - "matchManagers": ["nuget"], - "matchUpdateTypes": ["minor", "patch"], + "matchManagers": [ + "nuget" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], "groupName": "NuGet minor/patch updates" }, { "description": "Group all NuGet major updates together", - "matchManagers": ["nuget"], - "matchUpdateTypes": ["major"], + "matchManagers": [ + "nuget" + ], + "matchUpdateTypes": [ + "major" + ], "groupName": "NuGet major updates", "dependencyDashboardApproval": true }