Files
Axis_Cam_Tailscale/renovate.json
T
Weston Blieden 08f791ed24 ci: maintain build.yml in this repo instead of generating it
acap-ci.sh rendered this workflow from a shared template and renovate.json excluded it from updates. The generator was only ever run by hand, so the file is owned here now and Renovate maintains its action pins.
2026-09-21 08:28:08 +02:00

25 lines
815 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"dependencyDashboard": true,
"prConcurrentLimit": 3,
"prHourlyLimit": 0,
"schedule": ["before 5am on Monday"],
"packageRules": [
{
"description": "An SDK bump raises the package's minimum AXIS OS, so decide it deliberately.",
"matchDatasources": ["docker"],
"matchPackageNames": ["axisecp/acap-native-sdk", "axisecp/acap-sdk"],
"dependencyDashboardApproval": true
},
{
"description": "Transitive Go modules are off by default; enable so CVE fixes can land.",
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"enabled": true,
"groupName": "Go indirect dependencies",
"groupSlug": "go-indirect-dependencies"
}
]
}