Initial Commit
Markdown linter / markdown-lint (push) Successful in 47s
Markdown linter / markdown-link-checker (push) Successful in 1m14s

This commit is contained in:
2026-08-16 20:53:22 +02:00
commit 34b318ccb2
14 changed files with 2795 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>volker.raschek/renovate-config:default#master",
"local>volker.raschek/renovate-config:actions#master",
"local>volker.raschek/renovate-config:npm#master",
"local>volker.raschek/renovate-config:regexp#master"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [
"volker.raschek/ah-annotations@(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"depNameTemplate": "volker.raschek/ah-annotations",
"datasourceTemplate": "git-tags",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [
"actions/checkout@(?<currentValue>.*)"
],
"depNameTemplate": "actions/checkout",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
}
],
"packageRules": [
{
"addLabels": [
"renovate/automerge",
"renovate/documentation"
],
"automerge": true,
"matchDepNames": [
"volker.raschek/ah-annotations"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
]
}
],
"postUpgradeTasks": {
"commands": [
"install-tool node",
"make readme"
],
"fileFilters": [
"README.md"
],
"executionMode": "update"
}
}