diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..f17c87e4c --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,42 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", ":semanticCommits", ":dependencyDashboard"], + "schedule": ["before 6am on monday"], + "timezone": "America/Los_Angeles", + "prConcurrentLimit": 5, + "prHourlyLimit": 2, + "rangeStrategy": "bump", + "lockFileMaintenance": { + "enabled": true, + "schedule": ["before 6am on monday"] + }, + "vulnerabilityAlerts": { + "enabled": true, + "labels": ["security"] + }, + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch"], + "matchDepTypes": ["devDependencies"], + "groupName": "dev dependencies (non-major)" + }, + { + "matchUpdateTypes": ["patch"], + "matchDepTypes": ["dependencies"], + "groupName": "prod patch updates" + }, + { + "matchUpdateTypes": ["major"], + "dependencyDashboardApproval": true + }, + { + "matchManagers": ["github-actions"], + "groupName": "github-actions", + "pinDigests": true + }, + { + "matchPackagePatterns": ["^@hyperframes/"], + "enabled": false + } + ] +}