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
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:
+4
-4
@@ -13,9 +13,9 @@
|
||||
"^README\\.md$"
|
||||
],
|
||||
"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",
|
||||
"versioningTemplate": "semver"
|
||||
},
|
||||
@@ -25,7 +25,7 @@
|
||||
"^README\\.md$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"actions/checkout@(?<currentValue>.*)"
|
||||
"uses: actions/checkout@(?<currentValue>[^\\s\"']+)"
|
||||
],
|
||||
"depNameTemplate": "actions/checkout",
|
||||
"datasourceTemplate": "github-releases",
|
||||
@@ -40,7 +40,7 @@
|
||||
],
|
||||
"automerge": true,
|
||||
"matchDepNames": [
|
||||
"volker.raschek/ah-annotations"
|
||||
"volker.raschek/ah-annotation"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"major",
|
||||
|
||||
Reference in New Issue
Block a user