mirror of
https://github.com/netbootxyz/docker-netbootxyz.git
synced 2026-05-05 03:56:14 +02:00
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.
18 lines
428 B
JSON
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"
|
|
}
|
|
]
|
|
}
|