update forgejo via renovate #225

Open
mg wants to merge 5 commits from fr2 into master
2 changed files with 50 additions and 60 deletions

View file

@ -55,7 +55,7 @@ ufw_rules:
### roles-ansible.gitea ### roles-ansible.gitea
gitea_fork: "forgejo" gitea_fork: "forgejo"
# gitea update # gitea update
gitea_version: "9.0.1" gitea_version: "9.0.0"
gitea_version_check: true gitea_version_check: true
gitea_backup_on_upgrade: false gitea_backup_on_upgrade: false
# gitea in the linux world # gitea in the linux world

View file

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