Skip to content

Commit 6133416

Browse files
⬆️: migrate config .github/renovate.json
1 parent 84c3317 commit 6133416

File tree

1 file changed

+31
-9
lines changed

1 file changed

+31
-9
lines changed

.github/renovate.json

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,19 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"rebaseWhen": "behind-base-branch",
44
"dependencyDashboard": true,
5-
"labels": ["dependencies", "no-stale"],
5+
"labels": [
6+
"dependencies",
7+
"no-stale"
8+
],
69
"commitMessagePrefix": "⬆️",
710
"commitMessageTopic": "{{depName}}",
8-
"regexManagers": [
11+
"customManagers": [
912
{
10-
"fileMatch": ["/Dockerfile$", "/build.yaml$"],
13+
"customType": "regex",
14+
"fileMatch": [
15+
"/Dockerfile$",
16+
"/build.yaml$"
17+
],
1118
"matchStringsStrategy": "any",
1219
"matchStrings": [
1320
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+",
@@ -16,7 +23,10 @@
1623
"datasourceTemplate": "docker"
1724
},
1825
{
19-
"fileMatch": ["/Dockerfile$"],
26+
"customType": "regex",
27+
"fileMatch": [
28+
"/Dockerfile$"
29+
],
2030
"matchStringsStrategy": "any",
2131
"matchStrings": [
2232
"\\s\\s(?<package>[a-z0-9][a-z0-9-_]+)=(?<currentValue>[a-z0-9-_.]+)\\s+"
@@ -26,7 +36,10 @@
2636
"depNameTemplate": "alpine_3_19/{{package}}"
2737
},
2838
{
29-
"fileMatch": ["/Dockerfile$"],
39+
"customType": "regex",
40+
"fileMatch": [
41+
"/Dockerfile$"
42+
],
3043
"matchStrings": [
3144
"ARG OVERSEERR_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
3245
],
@@ -36,17 +49,26 @@
3649
],
3750
"packageRules": [
3851
{
39-
"matchDatasources": ["repology"],
52+
"matchDatasources": [
53+
"repology"
54+
],
4055
"automerge": true
4156
},
4257
{
4358
"groupName": "Add-on base image",
44-
"matchDatasources": ["docker"]
59+
"matchDatasources": [
60+
"docker"
61+
]
4562
},
4663
{
4764
"groupName": "Add-on base image",
48-
"matchDatasources": ["docker"],
49-
"matchUpdateTypes": ["minor", "patch"],
65+
"matchDatasources": [
66+
"docker"
67+
],
68+
"matchUpdateTypes": [
69+
"minor",
70+
"patch"
71+
],
5072
"automerge": true
5173
}
5274
]

0 commit comments

Comments
 (0)