fix: improve config after time/major

This commit is contained in:
WrenIX 2024-08-22 18:53:14 +02:00
parent 282fbddb42
commit 16a0bc5a82
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5

View file

@ -1,13 +1,15 @@
module.exports = { module.exports = {
"globalExtends": [ "globalExtends": [
"config:base", "config:recommended",
":semanticCommitTypeAll(fix)", ":semanticCommitTypeAll(fix)",
":disableRateLimiting" ":disableRateLimiting",
"customManagers:dockerfileVersions",
"customManagers:helmChartYamlAppVersions"
], ],
"endpoint": "https://codeberg.org/api/v1", "endpoint": "https://codeberg.org/api/v1",
"platform": "gitea", "platform": "gitea",
"githubTokenWarn": false, "githubTokenWarn": false,
"automerge": true, "automerge": false,
"gitAuthor": "Renovate Bot <dev.codeberg.renovate@wrenix.eu>", "gitAuthor": "Renovate Bot <dev.codeberg.renovate@wrenix.eu>",
"commitMessageAction": "update", "commitMessageAction": "update",
@ -17,6 +19,7 @@ module.exports = {
"requireConfig": "ignored", "requireConfig": "ignored",
"onboarding": true, "onboarding": true,
"dependencyDashboard": true,
"autodiscover": true, "autodiscover": true,
"autodiscoverFilter": [ "autodiscoverFilter": [
"wrenix/*" "wrenix/*"
@ -28,19 +31,16 @@ module.exports = {
"password": process.env.RENOVATE_TOKEN "password": process.env.RENOVATE_TOKEN
} }
], ],
"packageRules": [{
"matchUpdateTypes": [ "minor", "patch" ],
"matchCurrentVersion": ">=1.0.0",
"automerge": true
}],
"flux": { "flux": {
"fileMatch": [ "fileMatch": [
"release.*\\.yaml$", "release.*\\.yaml$",
"kustomization.*\\.yaml$" "kustomization.*\\.yaml$"
] ]
}, }
"customManagers": [{
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": ["(^|/)Chart\\.yaml$"],
"matchStrings": [
"#\\s?renovate: image=(?<depName>.*?)\\s?appVersion:\\s?\\\"?(?<currentValue>[\\w+\\.\\-]*)\""
]
}]
}; };