docker-netbootxyz/renovate.json
Antony Messerli 6ffc4e6954 Track iPXE Secure Boot release version via Renovate
Add custom regex manager to monitor ipxe/ipxe GitHub releases against
the IPXE_SB_VERSION pin in init.sh (currently v2.0.0). Renovate will
open a PR when a new iPXE release is available.
2026-03-15 17:03:43 -05:00

18 lines
428 B
JSON

{
"extends": [
"config:base"
],
"customManagers": [
{
"customType": "regex",
"description": "Track iPXE Secure Boot release version pinned in init.sh",
"fileMatch": ["root/init\\.sh"],
"matchStrings": [
"IPXE_SB_VERSION=\"\\$\\{IPXE_SB_VERSION:-(?<currentValue>v[\\d.]+)\\}\""
],
"depNameTemplate": "ipxe/ipxe",
"datasourceTemplate": "github-releases"
}
]
}