renovate-config-validator/renovate.json
Stephan Schnabel 4728aa08c7
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
chore: fix renovate preset location
2025-06-27 11:35:00 +02:00

24 lines
770 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>kokuwaio/renovate-config", ":reviewer(stephan.schnabel)"] ,
"packageRules": [
{
"description": "Renovate should only update its major version because of pull policy Always.",
"matchPackageNames": ["docker.io/renovate/renovate"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [".woodpecker/build.yaml"],
"matchStrings": [
"kokuwaio/renovate-config-validator:(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)",
"version: (?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)"
],
"datasourceTemplate": "docker",
"packageNameTemplate": "docker.io/renovate/renovate"
}
]
}