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.
This commit is contained in:
Weston Blieden
2026-09-21 10:27:19 +02:00
parent 8b70caaf70
commit 1997941965
+6 -1
View File
@@ -9,7 +9,12 @@
{
"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"],
"matchPackageNames": [
"axisecp/acap-native-sdk",
"axisecp/acap-sdk",
"docker.io/axisecp/acap-native-sdk",
"docker.io/axisecp/acap-sdk"
],
"dependencyDashboardApproval": true
},
{