markdownlint/renovate.json

30 lines
970 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>infrastructure/renovate-config", ":reviewer(stephan.schnabel)"],
"packageRules": [
{
"matchPackageNames": ["nodejs/node"],
"matchUpdateTypes": ["major"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["Dockerfile", ".woodpecker/build.yaml", ".woodpecker/push.yaml"],
"matchStrings": [
"org.opencontainers.image.version=(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)",
"markdownlint-cli@(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)",
"kokuwaio/markdownlint:(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)"
],
"datasourceTemplate": "npm",
"packageNameTemplate": "markdownlint-cli"
},{
"customType": "regex",
"fileMatch": ["Dockerfile"],
"matchStrings": ["NODE_VERSION=(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)"],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "nodejs/node"
}
]
}