revert parts of "506fa8da8d" (explanation inline) #217

Merged
mg merged 33 commits from dbg into master 2024-10-23 22:55:42 +02:00
Showing only changes of commit 592d1cccef - Show all commits

View file

@ -1,35 +1,61 @@
{
"$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"
}
"extends": [
"config:recommended"
],
"packageRules": [{
"matchDatasources": ["github-releases"],
"matchDepNames": ["0xERR0R/blocky"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchDatasources": ["github-releases"],
"matchDepNames": ["Corsinvest/cv4pve-autosnap"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
]
"ignorePaths": [
"**/friedhof/**"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"blocky.yml$"
],
"matchStrings": [
"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
}
]
}