homeserver/renovate.json
Michael Grote 8d00d2a33c
All checks were successful
ansible-lint / gitleaks (push) Successful in 4s
ansible-lint / Ansible Lint (push) Successful in 40s
test
2024-11-06 19:33:02 +01:00

47 lines
1.2 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"ignorePaths": ["**/friedhof/**"],
"regexManagers": [{
"fileMatch": ["blocky.yml$"],
"matchStrings": [
"blocky_version: (?<currentValue>v[\\d.]+)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "0xERR0R/blocky"
},
{
"fileMatch": ["pve.yml$"],
"matchStrings": [
"cv4pve_version: (?<currentValue>v[\\d.]+)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "Corsinvest/cv4pve-autosnap"
},
{
"fileMatch": ["git.yml$"],
"matchStrings": [
"gitea_version: (?<currentValue>[\\d.]+)"
],
"datasourceTemplate": "gitea-releases",
"depNameTemplate": "https://codeberg.org/forgejo/forgejo"
}],
"packageRules": [{
"matchDatasources": ["github-releases"],
"matchDepNames": ["0xERR0R/blocky"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchDatasources": ["github-releases"],
"matchDepNames": ["Corsinvest/cv4pve-autosnap"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchDatasources": ["gitea-releases"],
"matchDepNames": ["forgejo"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}]
}