diff --git a/.github/renovate.json b/.github/renovate.json index 01f497d3a6..aaf39b9676 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -4,37 +4,55 @@ "automerge": true, "automergeType": "pr-comment", "automergeComment": "lgtm", - "extends": ["config:base", ":dependencyDashboard"], + "extends": [ + "config:recommended", + ":dependencyDashboard" + ], "prHourlyLimit": 5, - "enabledManagers": ["npm"], + "enabledManagers": [ + "npm" + ], "rangeStrategy": "bump", "updatePinnedDependencies": false, - "schedule": ["before 3am on Monday"], + "schedule": [ + "before 3am on Monday" + ], "packageRules": [ { - "matchSourceUrlPrefixes": [ - "https://github.com/polkadot-js/", - "https://github.com/vue-polkadot/", - "https://github.com/kodadot/packages", - "https://github.com/cloudacy/vue-markdown-render", - "https://github.com/FortAwesome/Font-Awesome", - "https://github.com/TypeStrong/ts-loader" - ], "groupName": "merge with hazmat suit extra", - "enabled": false + "enabled": false, + "matchSourceUrls": [ + "https://github.com/polkadot-js/{/,}**", + "https://github.com/vue-polkadot/{/,}**", + "https://github.com/kodadot/packages{/,}**", + "https://github.com/cloudacy/vue-markdown-render{/,}**", + "https://github.com/FortAwesome/Font-Awesome{/,}**", + "https://github.com/TypeStrong/ts-loader{/,}**" + ] }, { "groupName": "Bumped minor version of packages", "prHeader": "Bumped minor version of packages, check if builds are still passing, please 🥺", - "matchUpdateTypes": ["minor", "patch"], - "matchDepTypes": ["dependencies", "devDependencies"] + "matchUpdateTypes": [ + "minor", + "patch" + ], + "matchDepTypes": [ + "dependencies", + "devDependencies" + ] }, { - "matchUpdateTypes": ["major", "pin"], + "matchUpdateTypes": [ + "major", + "pin" + ], "enabled": false }, { - "packageNames": ["node"], + "matchPackageNames": [ + "node" + ], "enabled": false } ]