From a3b981d694d02edef310551523633a3c50e8a161 Mon Sep 17 00:00:00 2001 From: Philippe Matray Date: Mon, 9 Mar 2026 11:04:12 +0100 Subject: [PATCH 1/2] chore: standardize renovate config --- renovate.json | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 65d1326..685713d 100644 --- a/renovate.json +++ b/renovate.json @@ -1 +1,30 @@ -{"$schema":"https://docs.renovatebot.com/renovate-schema.json","extends":["config:recommended"],"platformAutomerge":true,"packageRules":[{"matchUpdateTypes":["minor","patch"],"automerge":true}]} +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "baseBranchPatterns": ["dev"], + "schedule": ["before 9am on Saturday"], + "timezone": "Europe/Brussels", + "labels": ["dependencies", "renovate"], + "packageRules": [ + { + "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 82b922a8223e87cc7ed10ebb351f0eae528d1576 Mon Sep 17 00:00:00 2001 From: Philippe Matray Date: Mon, 9 Mar 2026 11:15:43 +0100 Subject: [PATCH 2/2] chore: fix renovate config for repo technologies --- renovate.json | 61 +++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 52 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index 685713d..468f0d5 100644 --- a/renovate.json +++ b/renovate.json @@ -1,29 +1,72 @@ { "$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 + }, + { + "description": "Group all npm minor/patch updates together", + "matchManagers": [ + "npm" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "npm minor/patch updates" + }, + { + "description": "Group all npm major updates together", + "matchManagers": [ + "npm" + ], + "matchUpdateTypes": [ + "major" + ], + "groupName": "npm major updates", + "dependencyDashboardApproval": true } ], "platformAutomerge": true