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