Files
karma/renovate.json
2026-02-18 10:57:47 +00:00

35 lines
989 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "group:monorepos"],
"dependencyDashboardApproval": false,
"schedule": ["after 12pm on monday"],
"timezone": "UTC",
"automerge": false,
"platformAutomerge": false,
"packageRules": [
{
"description": "Docker base images",
"matchDatasources": ["docker"],
"matchPackageNames": ["/^debian$/", "/^node$/", "/^golang$/"],
"groupName": "docker-base-images"
},
{
"description": "Bootstrap packages",
"matchDatasources": ["npm"],
"matchPackageNames": ["/^bootstrap$/", "/^bootswatch$/"],
"groupName": "bootstrap"
},
{
"description": "GitHub Actions",
"matchManagers": ["github-actions"],
"groupName": "github-actions"
},
{
"description": "Go modules for tools",
"matchManagers": ["gomod"],
"matchFileNames": ["tools/**/go.mod"],
"groupName": "go-tools"
}
]
}