fix(renovate): escape slash in matchStrings and add automerge rule for actions/checkout
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 7s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 11s
Markdown linter / markdown-link-checker (push) Successful in 21s
Markdown linter / markdown-lint (push) Successful in 33s

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>
This commit is contained in:
2026-08-16 21:31:01 +02:00
co-authored by Copilot
parent 2001fbcad4
commit 3c595aa81d
+16 -1
View File
@@ -13,7 +13,7 @@
"^README\\.md$"
],
"matchStrings": [
"uses: volker\\.raschek/ah-annotations@(?<currentValue>[^\\s\"']+)"
"uses: volker\\.raschek\/ah-annotations@(?<currentValue>[^\\s\"']+)"
],
"depNameTemplate": "volker.raschek/ah-annotations",
"packageNameTemplate": "https://git.cryptic.systems/volker.raschek/ah-annotations",
@@ -48,6 +48,21 @@
"minor",
"patch"
]
},
{
"addLabels": [
"renovate/automerge",
"renovate/documentation"
],
"automerge": true,
"matchDepNames": [
"actions/checkout"
],
"matchUpdateTypes": [
"minor",
"patch",
"pinDigest"
]
}
],
"postUpgradeTasks": {