Files
sabnzbd/renovate.json
T
cloudix_mcp_server a858ccebc5 fix(renovate): mirror user's working format - managerFilePatterns + anchors + semver
Use managerFilePatterns with ^ and $ anchors (matching user's proven
format), keep matchStrings simple with [0-9\\.]+ like working config.
Use versioningTemplate: semver-coerced for par2cmdline (v0.6.14-mt1).
2026-06-12 11:01:06 -04:00

32 lines
1.1 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Track SABnzbd version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["SABNZBD_VERSION=(?<currentValue>[0-9\\.]+)"],
"depNameTemplate": "sabnzbd/sabnzbd",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"description": "Track Tini version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["TINI_VERSION\\s+\\\"v?(?<currentValue>[0-9\\.]+)\\\""],
"depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
"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"
}
]
}