diff --git a/renovate.json b/renovate.json index 80fbb80..13c4630 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,38 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" -} + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "reviewers": [ + "TheRealArthurDent" + ], + "packageRules": [ + { + "description": "Auto merge all minor and patch updates to github-actions. Do it without a PR to reduce noise.", + "groupName": "github-actions", + "matchManagers": [ + "github-actions" + ], + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], + "automerge": true, + "addLabels": [ + "auto-merge" + ], + "automergeType": "branch" + }, + { + "description": "Create PRs for major changes to github-actions itself.", + "groupName": "github-actions MAJOR", + "commitMessagePrefix": "[MAJOR] ", + "matchManagers": [ + "github-actions" + ], + "matchUpdateTypes": [ + "major" + ], + "automerge": false + } + ] +}