Merge pull request 'fix(renovate): strip to minimal regexManagers, drop $schema' (#18) from fix/renovate-glob-only into master
Docker Build and Push / lint (push) Successful in 7s
Docker Build and Push / build (push) Successful in 38s
Docker Build and Push / test (push) Failing after 10m52s
Docker Build and Push / push (push) Has been skipped

Reviewed-on: #18
This commit was merged in pull request #18.
This commit is contained in:
2026-06-12 12:03:04 -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"
}
]
}