-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
59 lines (59 loc) · 1.32 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^.devcontainer/devcontainer.json$"
],
"matchStrings": [
"\\srenovate:\\s+datasource=(?<datasource>.*?)\\sdepName=(?<depName>.*?)\\n\\s*\"[a-z]+\":\\s+\"(?<currentValue>.*?)\""
]
},
{
"customType": "regex",
"fileMatch": [
"^\\.github/workflows/.*\\.yml$"
],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>.*?)\\s+depName=(?<depName>.*?)\\s+(?:[a-z\\-_]+)?version:\\s+\"(?<currentValue>.*?)\""
]
}
],
"extends": [
"config:recommended"
],
"packageRules": [
{
"automerge": true,
"automergeType": "branch",
"groupName": "automerge",
"matchPackageNames": [
"anyhow",
"env_logger",
"log",
"nix",
"renovatebot/renovate",
"serde",
"serde_json",
"serde_yml",
"url"
],
"schedule": [
"after 4pm on friday"
]
},
{
"automerge": true,
"automergeType": "branch",
"groupName": "sozu",
"matchPackageNames": [
"/^sozu/"
],
"schedule": [
"after 4pm on friday"
]
}
],
"timezone": "America/Los_Angeles"
}