diff --git a/renovate.json b/renovate.json index 29cf79a0e..c1bee3f95 100644 --- a/renovate.json +++ b/renovate.json @@ -1,11 +1,32 @@ { + "extends": [ + "config:base" + ], + "schedule": [ + "on the third tuesday of the month before 12pm" + ], + "timezone": "UTC", + "rebaseWhen": "conflicted", "packageRules": [ { - "updateTypes": ["minor", "patch", "pin", "digest"], - "automerge": true + "matchUpdateTypes": [ + "minor", + "patch" + ], + "automerge": true, + "groupName": "minor and patch updates" + }, + { + "matchUpdateTypes": [ + "major" + ], + "automerge": false + }, + { + "matchUpdateTypes": [ + "digest" + ], + "automerge": false } - ], - "extends": [ - "config:base" ] }