Files
sabnzbd/renovate.json
T

32 lines
1.1 KiB
JSON
Raw Normal View History

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2026-06-12 13:48:14 +00:00
"customManagers": [
{
2026-06-12 13:48:14 +00:00
"customType": "regex",
"description": "Detect SABnzbd release version pin",
"fileMatch": ["/^Dockerfile$/"],
"matchStrings": ["SABNZBD_VERSION=(?<currentValue>[\\w\\.-]+)"],
"depNameTemplate": "sabnzbd/sabnzbd",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
2026-06-12 13:48:14 +00:00
"customType": "regex",
"description": "Detect Tini release version pin",
"fileMatch": ["/^Dockerfile$/"],
"matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?<currentValue>[\\w\\.-]+)\""],
"depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
2026-06-12 13:48:14 +00:00
"customType": "regex",
"description": "Detect par2cmdline release version pin",
"fileMatch": ["/^Dockerfile$/"],
"matchStrings": ["PAR2CMDLINE_VERSION=v?(?<currentValue>[\\w\\.-]+)"],
"depNameTemplate": "jkansanen/par2cmdline-mt",
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver"
}
]
}