Files
Axis_Cam_Tailscale/renovate.json
T
Weston Blieden 1997941965 ci: match the SDK approval rule regardless of registry prefix
matchPackageNames listed only axisecp/acap-native-sdk, but repos with ARG REPO=docker.io/axisecp resolve the dep as docker.io/axisecp/acap-native-sdk, which never matched. The approval gate was silently bypassed in Axis_Cam_OpenVPN and Axis_Cam_WireGuard, where SDK 12.11.0 was queued for automatic PR creation.
2026-09-21 10:27:19 +02:00

30 lines
922 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",
"docker.io/axisecp/acap-native-sdk",
"docker.io/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"
}
]
}