-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrenovate.json5
47 lines (47 loc) · 1.41 KB
/
renovate.json5
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
38
39
40
41
42
43
44
45
46
47
{
extends: [
"config:recommended",
"helpers:pinGitHubActionDigests",
"github>aquaproj/aqua-renovate-config#2.6.0",
],
automerge: true,
platformAutomerge: true,
prHourlyLimit: 0,
prConcurrentLimit: 0,
branchConcurrentLimit: 0,
customManagers: [
{
fileMatch: ["README\\.md"],
matchStrings: [
"(version|ref): \"?(?<currentValue>.*)\"? +# renovate: depName=(?<depName>.*)"
],
datasourceTemplate: "github-releases",
},
{
fileMatch: ["README\\.md"],
"matchStrings": [
"\"github>aquaproj/aqua-renovate-config#(?<currentValue>[^\" \\n\\(]+)",
"\"github>aquaproj/aqua-renovate-config:.*#(?<currentValue>[^\" \\n\\(]+)",
"\"github>aquaproj/aqua-renovate-config/.*#(?<currentValue>[^\" \\n\\(]+)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "aquaproj/aqua-renovate-config"
},
{
fileMatch: ["README\\.md"],
"matchStrings": [
" +['\"]?aqua_version['\"]? *: +['\"]?(?<currentValue>[^'\" \\n]+)['\"]?"
],
"depNameTemplate": "aquaproj/aqua",
"datasourceTemplate": "github-releases"
},
{
fileMatch: ["README\\.md"],
"matchStrings": [
"raw\\.githubusercontent\\.com/aquaproj/aqua-installer/(?<currentValue>.*?)/aqua-installer"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "aquaproj/aqua-installer"
}
]
}