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

This commit is contained in:
Stephan Schnabel 2025-02-06 20:06:45 +01:00
parent a0d4b1b977
commit 148e0bcb23
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
16 changed files with 735 additions and 0 deletions

20
renovate.json Normal file
View file

@ -0,0 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>infrastructure/renovate-config", ":reviewer(stephan.schnabel)"] ,
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["Dockerfile"],
"matchStrings": ["github.com/jqlang/jq/releases/download/(?<currentValue>jq-[0-9]+\\.[0-9]+\\.[0-9]+)/jq-linux-\\$SUFFIX"],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "jqlang/jq",
"versioningTemplate": "regex:^jq-?(?<major>[0-9]+)\\.(?<minor>[0-9]+)\\.(?<patch>[0-9]+)?$"
},{
"customType": "regex",
"managerFilePatterns": ["Dockerfile"],
"matchStrings": ["github.com/stunnel/static-curl/releases/download/(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)/curl-linux-\\$SUFFIX-glibc", "glibc-(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+).tar.xz"],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "stunnel/static-curl"
}
]
}