Files
sabnzbd/renovate.json
T
cloudix_mcp_server a105dc3e44
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 42s
Docker Build and Push / test (pull_request) Successful in 16s
Docker Build and Push / push (pull_request) Has been skipped
fix(renovate): simplify Tini regex escaping
2026-06-12 11:01:36 -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"
}
]
}