sintonia/.github/renovate.json

43 lines
910 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":enablePreCommit",
":preserveSemverRanges",
":disableDependencyDashboard"
],
"labels": ["dependencies"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"addLabels": ["ci"]
},
{
"matchManagers": ["composer"],
"addLabels": ["php"]
},
{
"matchManagers": ["pip_setup", "pip_requirements"],
"addLabels": ["python"],
"rangeStrategy": "widen"
},
{
"matchPaths": ["website/**"],
"addLabels": ["javascript"]
},
{
"extends": "monorepo:docusaurus",
"groupName": "docusaurus monorepo"
},
{
"matchUpdateTypes": ["patch"],
"matchPaths": [
".github/workflows/*",
".pre-commit-config.yaml",
"website/**"
],
"automerge": true
}
]
}