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

This commit is contained in:
Stephan Schnabel 2025-06-14 20:51:37 +02:00
parent 500978a33f
commit 29bd3aa4d7
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-releases",
"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-releases",
"packageNameTemplate": "stunnel/static-curl"
}
]
}