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": "Track SABnzbd version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["SABNZBD_VERSION=(?<currentValue>[0-9\\.]+)"],
"depNameTemplate": "sabnzbd/sabnzbd",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
2026-06-12 13:48:14 +00:00
"customType": "regex",
"description": "Track Tini version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
2026-06-12 11:01:36 -04:00
"matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?<currentValue>[0-9\\.]+)\""],
"depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
2026-06-12 13:48:14 +00:00
"customType": "regex",
"description": "Track par2cmdline version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["PAR2CMDLINE_VERSION=v?(?<currentValue>[\\w\\.-]+)"],
"depNameTemplate": "jkansanen/par2cmdline-mt",
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver-coerced"
}
]
}