Adds a regex customManager to detect and update the yq version
referenced in README.md, using the mikefarah/yq GitHub releases
datasource.
Co-authored-by: Copilot <copilot@github.com>
Merge the separate actions/checkout packageRule into the existing
ah-annotations rule to reduce duplication. Update README examples to use
current versions (actions/checkout@v5.0.0, ah-annotations@v0.0.1).
Co-authored-by: Copilot <copilot@github.com>
Escape the forward slash in the ah-annotations regex pattern to ensure
correct matching. Add a packageRule to automerge minor, patch, and
pinDigest updates for actions/checkout.
Co-authored-by: Copilot <copilot@github.com>
Update README examples and renovate customManagers to reference
"ah-annotations" (with trailing 's') matching the repository name on
git.cryptic.systems.
Co-authored-by: Copilot <copilot@github.com>
The git-tags datasource requires a resolvable Git URL to fetch tags.
Without packageNameTemplate, Renovate attempts to use the depName
"volker.raschek/ah-annotation" as a URL, which fails for non-GitHub
repositories.
Co-authored-by: Copilot <copilot@github.com>
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>