diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000000000000000000000000000000000000..de01b8ea730d971cd3866a66a891284ac7262401 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,34 @@ +{ + "extends": [ + "config:base" + ], + "enabledManagers": [ + "npm" + ], + // target chore/next branch + "baseBranches": [ + "chore/next" + ], + // only 1 PR at the same time (to avoid cascading rebase) + "prConcurrentLimit": 1, + // auto-merge if build is OK + "automerge": true, + "packageRules": [ + // group all minor dependencies, once a week + { + "matchPackagePatterns": [ + "*" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "matchCurrentVersion": ">=1", + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch", + "schedule": [ + "after 1am on Thursday" + ] + } + ] +}