mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-27 18:32:55 +03:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:base"],
|
|
"ignorePaths": ["node_modules", "**/node_modules/**"],
|
|
"commitMessagePrefix": "chore(deps): ",
|
|
"commitMessageTopic": "{{depName}}",
|
|
"commitMessageExtra": "to {{newVersion}}",
|
|
"dependencyDashboard": true,
|
|
"prConcurrentLimit": 10,
|
|
"rangeStrategy": "pin",
|
|
"vulnerabilityAlerts": {
|
|
"enabled": true
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["pip_requirements"],
|
|
"matchPackagePatterns": ["*"],
|
|
"groupName": "backend-updates",
|
|
"groupSlug": "backend",
|
|
"addLabels": ["backend"]
|
|
},
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"matchPackagePatterns": ["*"],
|
|
"groupName": "frontend-updates",
|
|
"groupSlug": "frontend",
|
|
"addLabels": ["frontend"]
|
|
},
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"matchPackagePatterns": ["*"],
|
|
"groupName": "cms-updates",
|
|
"groupSlug": "cms",
|
|
"addLabels": ["cms"]
|
|
},
|
|
{
|
|
"matchManagers": ["dockerfile"],
|
|
|
|
"groupName": "backend-docker-updates",
|
|
"groupSlug": "backend-docker",
|
|
"addLabels": ["docker"]
|
|
},
|
|
{
|
|
"matchManagers": ["docker-compose"],
|
|
"groupName": "docker-compose-updates",
|
|
"groupSlug": "docker-compose",
|
|
"addLabels": ["docker-compose"]
|
|
}
|
|
]
|
|
}
|