diff --git a/.github/renovate.json b/.github/renovate.json index d53524c..85d1000 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,14 +1,21 @@ { - "extends": [ - "config:base", - "schedule:earlyMondays" - ], - "prConcurrentLimit": 3, + "extends": ["config:base"], "rebaseWhen": "conflicted", + "baseBranches": ["master"], "packageRules": [ { "matchDatasources": ["orb"], - "rangeStrategy": "replace" + "matchUpdateTypes": ["patch", "minor"], + "automerge": true, + "automergeType": "branch", + "semanticCommitType": "ci" + }, + { + "matchDepTypes": ["test"], + "matchUpdateTypes": ["patch", "minor"], + "automerge": true, + "automergeType": "branch", + "semanticCommitType": "fix" } ] -} \ No newline at end of file +}