-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrenovate.json
37 lines (37 loc) · 1.1 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"ignoreDeps": ["us-docker.pkg.dev/wozz-hass/public/envoyproxy"],
"commitMessagePrefix": "⬆️",
"regexManagers": [
{
"fileMatch": [
"^(.*\/)?(Dockerfile|build\\.yaml)$"
],
"matchStringsStrategy": "any",
"matchStrings": [
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+",
"(aarch64|amd64|armhf|armv7|i386):\\s[\"']?(?<depName>.*?):(?<currentValue>.*?)[\"']?\\s"
],
"datasourceTemplate": "docker"
},
{
"fileMatch": ["^logspout/Dockerfile$"],
"matchStrings": [
"ENV LOGSPOUT_HASSIO_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "wozz/logspout"
},
{
"fileMatch": ["^matter-server-ui/Dockerfile$"],
"matchStrings": [
"ENV MATTER_SERVER_UI_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "wozz/matter-server-ui"
}
]
}