fix(ci): implement autoreleaser
All checks were successful
Build / build-amd64 (push) Successful in 29s
Lint Markdown files / markdown-lint (push) Successful in 4s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 4s
Build / build-arm64 (push) Successful in 1m12s

This commit is contained in:
2026-01-04 10:03:17 +01:00
parent 4bcfb8fb2d
commit fae7fb057d
4 changed files with 191 additions and 30 deletions

View File

@@ -1,5 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [
"IMAGE_VERSION=(?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "igorshubovych/markdownlint-cli",
"versioningTemplate": "semver"
}
],
"extends": [
"local>volker.raschek/renovate-config:default#master",
"local>volker.raschek/renovate-config:container#master",
@@ -8,9 +22,20 @@
],
"packageRules": [
{
"automerge": false,
"matchPackageNames": [ "markdownlint-cli" ],
"matchManagers": [ "regex" ]
"addLabels": [
"renovate/automerge"
],
"automerge": true,
"matchPackageNames": [
"igorshubovych/markdownlint-cli"
],
"matchManagers": [
"regex"
],
"matchUpdateTypes": [
"minor",
"patch"
]
}
]
}