Initial draft of plugin.
All checks were successful
ci/woodpecker/push/dockerhub Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test/1 Pipeline was successful
ci/woodpecker/push/test/2 Pipeline was successful

This commit is contained in:
Stephan Schnabel 2025-06-18 14:12:00 +02:00
parent acb6987200
commit 33b70ed5ae
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
16 changed files with 686 additions and 0 deletions

24
renovate.json Normal file
View file

@ -0,0 +1,24 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>infrastructure/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"
}
]
}