renovate/config.json
kjuulh e3f172b4e1
All checks were successful
continuous-integration/drone/push Build is passing
feat: update config
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-04-14 15:23:55 +02:00

67 lines
1.6 KiB
JSON

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