renovate/config.json

67 lines
1.6 KiB
JSON
Raw Normal View History

2022-10-26 09:22:36 +02:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"autodiscover": true,
"automerge": true,
"automergeType": "pr",
"endpoint": "https://git.front.kjuulh.io/api/v1/",
2022-10-26 09:22:36 +02:00
"extends": [
"config:recommended"
2022-10-26 19:16:01 +02:00
],
2022-11-13 01:13:54 +01:00
"hostRules": [
{
"hostType": "docker",
2023-07-09 11:08:54 +02:00
"matchHost": "harbor.front.kjuulh.io",
"password": "{{ secrets.HARBOR_SERVER_PASSWORD }}",
"username": "service"
2022-11-13 01:13:54 +01:00
}
],
2022-10-26 19:16:01 +02:00
"packageRules": [
2023-01-14 13:58:45 +01:00
{
"matchDatasources": [
"docker"
],
"registryUrls": [
"https://harbor.front.kjuulh.io/docker-proxy/library/"
]
2023-01-14 13:58:45 +01:00
},
2022-10-26 19:16:01 +02:00
{
"groupName": "all dependencies",
"groupSlug": "all",
"lockFileMaintenance": {
"enabled": false
},
"separateMajorMinor": false,
"matchPackagePatterns": [
"*"
]
2022-10-26 19:16:01 +02:00
}
],
"platform": "gitea",
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [
"^cuddle.yaml$"
],
"matchStrings": [
".*_image:.*\"(?<depName>.*):(?<currentValue>.*)\""
]
},
{
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [
"(^|/).+.rs$",
"(^|/).+.ya?ml$"
],
"matchStrings": [
2024-04-13 12:02:41 +02:00
"(?<depName>kasperhermansen/.+):(?<currentValue>\\S+)",
"(?<depName>kjuulh/.+):(?<currentValue>\\S+)",
"(?<depName>docker.io/.+):(?<currentValue>\\S+)",
2024-04-13 12:02:41 +02:00
"(?<depName>harbor.front.kjuulh.io/.+):(?<currentValue>\\S+)"
],
"versioningTemplate": "docker"
}
2022-10-26 09:22:36 +02:00
]
}