Files
ah-annotations/renovate.json
T
volker.raschekandCopilot 896608c49c
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Failing after 7s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Failing after 9s
Markdown linter / markdown-link-checker (push) Successful in 23s
Markdown linter / markdown-lint (push) Successful in 33s
feat(renovate): track yq version in README via custom regex manager
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>
2026-08-16 22:16:21 +02:00

77 lines
1.9 KiB
JSON

{
"$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": [
"uses: volker\\.raschek\/ah-annotations@(?<currentValue>[^\\s\"']+)"
],
"depNameTemplate": "volker.raschek/ah-annotations",
"packageNameTemplate": "https://git.cryptic.systems/volker.raschek/ah-annotations",
"datasourceTemplate": "git-tags",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [
"uses: actions/checkout@(?<currentValue>[^\\s\"']+)"
],
"depNameTemplate": "actions/checkout",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [
"`(?<currentValue>[^\\s\"']+)`"
],
"depNameTemplate": "mikefarah/yq",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
}
],
"packageRules": [
{
"addLabels": [
"renovate/automerge",
"renovate/documentation"
],
"automerge": true,
"matchDepNames": [
"actions/checkout",
"volker.raschek/ah-annotations"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
]
}
],
"postUpgradeTasks": {
"commands": [
"install-tool node",
"make readme"
],
"fileFilters": [
"README.md"
],
"executionMode": "update"
}
}