diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..3c4852c53 --- /dev/null +++ b/renovate.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + "schedule:daily" + ], + "timezone": "America/Chicago", + "labels": ["dependencies"], + "lockFileMaintenance": { + "enabled": true, + "automerge": true + }, + "packageRules": [ + { + "matchManagers": ["poetry"], + "addLabels": ["python"] + }, + { + "matchManagers": ["poetry"], + "matchDepTypes": ["dev"], + "rangeStrategy": "pin" + }, + { + "matchManagers": ["poetry"], + "matchDepTypes": ["dev"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + }, + { + "matchManagers": ["npm", "nvm"], + "addLabels": ["javascript"], + "stabilityDays": 3, + "rangeStrategy": "pin", + "automerge": true + }, + { + "matchManagers": ["npm"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + }, + { + "matchManagers": ["github-actions"], + "addLabels": ["github_actions"], + "stabilityDays": 3, + "rangeStrategy": "pin", + "pinDigests": true + }, + { + "matchManagers": ["github-actions"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + } + ] +}