fix(renovate): correct repo name and tighten regex in customManagers
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 6s
Markdown linter / markdown-lint (push) Successful in 31s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 10s
Markdown linter / markdown-link-checker (push) Successful in 22s

The depName and matchStrings referenced "ah-annotations" (with trailing
's') but the repository is named "ah-annotation". Additionally, the
matchStrings patterns used greedy `.+`/`.*` which could capture trailing
whitespace or YAML content beyond the version string. Replace with
`[^\s"']+` to stop at the first delimiter. Escape the dot in
"volker.raschek" to prevent unintended wildcard matching. Add "uses: "
prefix to match the actual README content.

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-08-16 21:15:57 +02:00
co-authored by Copilot
parent 525214e9c8
commit 095f8b5452
+4 -4
View File
@@ -13,9 +13,9 @@
"^README\\.md$" "^README\\.md$"
], ],
"matchStrings": [ "matchStrings": [
"volker.raschek/ah-annotations@(?<currentValue>\\d+\\.\\d+\\.\\d+)" "uses: volker\\.raschek/ah-annotation@(?<currentValue>[^\\s\"']+)"
], ],
"depNameTemplate": "volker.raschek/ah-annotations", "depNameTemplate": "volker.raschek/ah-annotation",
"datasourceTemplate": "git-tags", "datasourceTemplate": "git-tags",
"versioningTemplate": "semver" "versioningTemplate": "semver"
}, },
@@ -25,7 +25,7 @@
"^README\\.md$" "^README\\.md$"
], ],
"matchStrings": [ "matchStrings": [
"actions/checkout@(?<currentValue>.*)" "uses: actions/checkout@(?<currentValue>[^\\s\"']+)"
], ],
"depNameTemplate": "actions/checkout", "depNameTemplate": "actions/checkout",
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
@@ -40,7 +40,7 @@
], ],
"automerge": true, "automerge": true,
"matchDepNames": [ "matchDepNames": [
"volker.raschek/ah-annotations" "volker.raschek/ah-annotation"
], ],
"matchUpdateTypes": [ "matchUpdateTypes": [
"major", "major",