Merge branch 'master' into dbg
All checks were successful
ansible-lint / gitleaks (pull_request) Successful in 6s
ansible-lint / Ansible Lint (pull_request) Successful in 36s

This commit is contained in:
Michael Grote 2024-10-23 22:34:07 +02:00
commit 592d1cccef

View file

@ -1,9 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"ignorePaths": ["**/friedhof/**"],
"regexManagers": [{
"fileMatch": ["blocky.yml$"],
"extends": [
"config:recommended"
],
"ignorePaths": [
"**/friedhof/**"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"blocky.yml$"
],
"matchStrings": [
"blocky_version: (?<currentValue>v[\\d.]+)"
],
@ -11,7 +19,10 @@
"depNameTemplate": "0xERR0R/blocky"
},
{
"fileMatch": ["pve.yml$"],
"customType": "regex",
"fileMatch": [
"pve.yml$"
],
"matchStrings": [
"cv4pve_version: (?<currentValue>v[\\d.]+)"
],
@ -19,16 +30,31 @@
"depNameTemplate": "Corsinvest/cv4pve-autosnap"
}
],
"packageRules": [{
"matchDatasources": ["github-releases"],
"matchDepNames": ["0xERR0R/blocky"],
"matchUpdateTypes": ["minor", "patch"],
"packageRules": [
{
"matchDatasources": [
"github-releases"
],
"matchDepNames": [
"0xERR0R/blocky"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchDatasources": ["github-releases"],
"matchDepNames": ["Corsinvest/cv4pve-autosnap"],
"matchUpdateTypes": ["minor", "patch"],
"matchDatasources": [
"github-releases"
],
"matchDepNames": [
"Corsinvest/cv4pve-autosnap"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]