diff --git a/renovate.json b/renovate.json index db6b2bfc..914cfd00 100644 --- a/renovate.json +++ b/renovate.json @@ -1,10 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], + "extends": ["config:recommended"], "timezone": "Europe/Berlin", - "schedule": "before 2am every weekday", + "schedule": ["at any time"], "labels": [ "bot", "renovate", @@ -12,7 +10,20 @@ "skip:test:long_running", "skip:codecov" ], - "ignorePaths": [ - "plugins/manifest/package.json" + "lockFileMaintenance": { + "enabled": true, + "schedule": ["before 5am on monday"] + }, + "packageRules": [ + { + "groupName": "minor and patch dependencies", + "matchManagers": ["pep621"], + "matchUpdateTypes": ["minor", "patch"] + }, + { + "groupName": "GitHub Actions", + "matchManagers": ["github-actions"], + "separateMajorMinor": false + } ] -} \ No newline at end of file +}