diff --git a/renovate.json b/renovate.json index 5db72dd..d11bbe8 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,50 @@ "$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