chore(config): migrate renovate config (#218)
All checks were successful
ansible-lint / gitleaks (push) Successful in 3s
ansible-lint / Ansible Lint (push) Successful in 38s

The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed.

  You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon.

🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid.

 Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://github.com/renovatebot/renovate/discussions).

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #218
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
This commit is contained in:
Renovate Bot 2024-10-23 22:34:01 +02:00 committed by Michael Grote
parent 506fa8da8d
commit 6d984287bb

View file

@ -1,35 +1,61 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"], "extends": [
"ignorePaths": ["**/friedhof/**"], "config:recommended"
"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"
}
], ],
"packageRules": [{ "ignorePaths": [
"matchDatasources": ["github-releases"], "**/friedhof/**"
"matchDepNames": ["0xERR0R/blocky"], ],
"matchUpdateTypes": ["minor", "patch"], "customManagers": [
"automerge": true {
}, "customType": "regex",
{ "fileMatch": [
"matchDatasources": ["github-releases"], "blocky.yml$"
"matchDepNames": ["Corsinvest/cv4pve-autosnap"], ],
"matchUpdateTypes": ["minor", "patch"], "matchStrings": [
"automerge": true "blocky_version: (?<currentValue>v[\\d.]+)"
} ],
] "datasourceTemplate": "github-releases",
"depNameTemplate": "0xERR0R/blocky"
},
{
"customType": "regex",
"fileMatch": [
"pve.yml$"
],
"matchStrings": [
"cv4pve_version: (?<currentValue>v[\\d.]+)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "Corsinvest/cv4pve-autosnap"
}
],
"packageRules": [
{
"matchDatasources": [
"github-releases"
],
"matchDepNames": [
"0xERR0R/blocky"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchDatasources": [
"github-releases"
],
"matchDepNames": [
"Corsinvest/cv4pve-autosnap"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
} }