homeserver/renovate.json
Michael Grote 0076b451a4
All checks were successful
ansible-lint / ansible-lint (push) Successful in 24s
gitleaks / gitleaks (push) Successful in 3s
update forgejo and fix renovate (#169)
Reviewed-on: https://git.mgrote.net///mg/homeserver/pulls/169
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
2024-08-27 19:45:47 +02:00

48 lines
1.3 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>v[\\d.]+)"
],
"datasourceTemplate": "gitea-releases",
"lookupName": "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"],
"lookupName": "https://codeberg.org/forgejo/forgejo",
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}]
}