28 lines
736 B
JSON
28 lines
736 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"description": "Renovate config — groups minor/patch, limits PRs, updates Docker base images.",
|
|
"schedule": ["before 6am on Monday"],
|
|
"prHourlyLimit": 5,
|
|
"prConcurrentLimit": 5,
|
|
"labels": ["dependencies"],
|
|
"packageRules": [
|
|
{
|
|
"description": "Group all minor and patch updates to reduce PR noise",
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"groupName": "minor-and-patch",
|
|
"groupSlug": "minor-patch"
|
|
},
|
|
{
|
|
"description": "Update Docker base images (FROM ...)",
|
|
"matchDatasources": ["docker"],
|
|
"enabled": true
|
|
}
|
|
],
|
|
"docker": {
|
|
"enabled": true
|
|
}
|
|
}
|