refactor: add global sane rules
renovate / renovate (push) Successful in 29s

This commit is contained in:
2026-04-27 11:55:35 +01:00
parent 087b3ff9f9
commit 8b5b13dfff
2 changed files with 28 additions and 9 deletions
+27 -1
View File
@@ -1,8 +1,34 @@
module.exports = {
"endpoint": "https://code.emmathe.dev/api/v1", // replace it with your actual endpoint
"endpoint": "https://code.emmathe.dev/api/v1",
"gitAuthor": "Renovate Bot <renovate-bot@iam.emmathe.dev>",
"platform": "gitea",
"onboardingConfigFileName": ".renovaterc.json",
"autodiscover": true,
"optimizeForDisabled": true,
"extends": ["config:recommended"],
"schedule": ["before 4am on monday"],
"timezone": "Europe/London",
"labels": ["dependencies"],
"assignees": ["lyrathorpe"],
"reviewers": ["lyrathorpe"],
"prHourlyLimit": 10,
"prConcurrentLimit": 50,
"branchConcurrentLimit": 5,
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"matchUpdateTypes": ["major"],
"automerge": false
}
],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 4am on monday"]
},
"vulnerabilityAlerts": {
"enabled": true
}
};