Files
docker-compose-docker/renovate.json
Markus Pesch e862dccb03
All checks were successful
Auto release / tag_on_change (push) Successful in 5s
Build / build-amd64 (push) Successful in 33s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 1m24s
fix(renovate): update configuration
2025-12-05 17:42:25 +01:00

43 lines
1023 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^Dockerfile$",
"^README\\.md$"
],
"matchStrings": [
"ARG DC_VERSION=(?<currentValue>.*)",
"IMAGE_VERSION=(?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "docker/compose",
"versioningTemplate": "semver"
}
],
"extends": [
"local>volker.raschek/renovate-config:default#master",
"local>volker.raschek/renovate-config:container#master",
"local>volker.raschek/renovate-config:actions#master",
"local>volker.raschek/renovate-config:regexp#master"
],
"packageRules": [
{
"addLabels": [
"renovate/automerge"
],
"automerge": true,
"matchPackageNames": [
"docker/compose"
],
"matchManagers": [
"regex"
],
"matchUpdateTypes": [
"minor",
"patch"
]
}
]
}