fix(renovate): strip to minimal regexManagers, drop $schema #18

Merged
jcabillot merged 2 commits from fix/renovate-glob-only into master 2026-06-12 12:03:08 -04:00
+7 -17
View File
@@ -1,32 +1,22 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
"regexManagers": [
{
"customType": "regex",
"description": "Track SABnzbd version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["SABNZBD_VERSION=(?<currentValue>[0-9\\.]+)"],
"depNameTemplate": "sabnzbd/sabnzbd",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"description": "Track Tini version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?<currentValue>[0-9\\.]+)\""],
"depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"description": "Track par2cmdline version in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["PAR2CMDLINE_VERSION=v?(?<currentValue>[\\w\\.-]+)"],
"depNameTemplate": "jkansanen/par2cmdline-mt",
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver-coerced"
"datasourceTemplate": "github-tags"
}
]
}