feat: update config
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-04-14 15:23:55 +02:00
parent 2cdc897416
commit e3f172b4e1
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -1,19 +1,18 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"platform": "gitea",
"endpoint": "https://git.front.kjuulh.io/api/v1/",
"autodiscover": true, "autodiscover": true,
"automerge": true, "automerge": true,
"automergeType": "pr", "automergeType": "pr",
"endpoint": "https://git.front.kjuulh.io/api/v1/",
"extends": [ "extends": [
"config:base" "config:recommended"
], ],
"hostRules": [ "hostRules": [
{ {
"hostType": "docker", "hostType": "docker",
"matchHost": "harbor.front.kjuulh.io", "matchHost": "harbor.front.kjuulh.io",
"username": "service", "password": "{{ secrets.HARBOR_SERVER_PASSWORD }}",
"password": "{{ secrets.HARBOR_SERVER_PASSWORD }}" "username": "service"
} }
], ],
"packageRules": [ "packageRules": [
@ -27,33 +26,31 @@
}, },
{ {
"groupName": "all dependencies", "groupName": "all dependencies",
"separateMajorMinor": false,
"groupSlug": "all", "groupSlug": "all",
"packageRules": [
{
"matchPackagePatterns": [
"*"
],
"groupName": "all dependencies",
"groupSlug": "all"
}
],
"lockFileMaintenance": { "lockFileMaintenance": {
"enabled": false "enabled": false
} },
"separateMajorMinor": false,
"matchPackagePatterns": [
"*"
]
} }
], ],
"regexManagers": [ "platform": "gitea",
"customManagers": [
{ {
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [ "fileMatch": [
"^cuddle.yaml$" "^cuddle.yaml$"
], ],
"matchStrings": [ "matchStrings": [
".*_image:.*\"(?<depName>.*):(?<currentValue>.*)\"" ".*_image:.*\"(?<depName>.*):(?<currentValue>.*)\""
], ]
"datasourceTemplate": "docker"
}, },
{ {
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [ "fileMatch": [
"(^|/).+.rs$", "(^|/).+.rs$",
"(^|/).+.ya?ml$" "(^|/).+.ya?ml$"
@ -64,8 +61,7 @@
"(?<depName>docker.io/.+):(?<currentValue>\\S+)", "(?<depName>docker.io/.+):(?<currentValue>\\S+)",
"(?<depName>harbor.front.kjuulh.io/.+):(?<currentValue>\\S+)" "(?<depName>harbor.front.kjuulh.io/.+):(?<currentValue>\\S+)"
], ],
"datasourceTemplate": "docker",
"versioningTemplate": "docker" "versioningTemplate": "docker"
} }
] ]
} }