renovate/config.json

70 lines
1.5 KiB
JSON
Raw Normal View History

2022-10-26 09:22:36 +02:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"platform": "gitea",
"endpoint": "https://git.front.kjuulh.io/api/v1/",
"autodiscover": true,
"automerge": true,
"automergeType": "pr",
"extends": [
"config:base"
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",
"username": "service",
2022-11-13 01:13:54 +01:00
"password": "{{ secrets.HARBOR_SERVER_PASSWORD }}"
}
],
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",
"separateMajorMinor": false,
"groupSlug": "all",
"packageRules": [
{
"matchPackagePatterns": [
"*"
],
"groupName": "all dependencies",
"groupSlug": "all"
}
],
"lockFileMaintenance": {
"enabled": false
}
}
],
"regexManagers": [
{
"fileMatch": [
"^cuddle.yaml$"
],
"matchStrings": [
".*_image:.*\"(?<depName>.*):(?<currentValue>.*)\""
],
"datasourceTemplate": "docker"
},
{
"fileMatch": [
"(^|/).+.rs$",
"(^|/).+.ya?ml$"
],
"matchStrings": [
"(?<depName>docker.io/.+):(?<currentValue>\\S+)",
"(?<depName>.*?):(?<currentValue>\\S+)"
],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
}
2022-10-26 09:22:36 +02:00
]
}