-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
69 lines (69 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://json.schemastore.org/renovate.json",
"extends": ["config:best-practices"],
"schedule": ["before 4:00am on Monday"],
"timezone": "Asia/Tokyo",
"prHourlyLimit": 0,
"automerge": false,
"rangeStrategy": "bump",
"branchConcurrentLimit": 0,
"enabledManagers": ["github-actions", "npm"],
"labels": ["renovate"],
"packageRules": [
{
"groupName": "GitHub Actions",
"matchDatasources": ["github-actions"]
},
{
"groupName": "devDependencies",
"matchDepTypes": ["devDependencies"],
"matchDatasources": ["npm"]
},
{
"groupName": "root dependencies",
"matchDatasources": ["npm"],
"matchFileNames": ["package.json"]
},
{
"groupName": "astro",
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageSuffix": "({{parentDir}})",
"matchDatasources": ["npm"],
"matchDepTypes": ["dependencies"],
"matchFileNames": ["packages/sushichan.live/**"]
},
{
"groupName": "astro-dev",
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageSuffix": "({{parentDir}})",
"matchDatasources": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchFileNames": ["packages/sushichan.live/**"]
},
{
"groupName": "astro-react",
"commitMessageSuffix": "(astro-react)",
"matchDatasources": ["npm"],
"matchDepTypes": ["dependencies", "devDependencies"],
"matchFileNames": ["packages/sushichan.live/**"],
"matchPackageNames": ["/react/", "/react-dom/"]
},
{
"groupName": "astro-markdown",
"commitMessageSuffix": "(astro-markdown)",
"matchDatasources": ["npm"],
"matchDepTypes": ["dependencies", "devDependencies"],
"matchFileNames": ["packages/sushichan.live/**"],
"matchPackageNames": [
"astro-expressive-code",
"/^@expressive-code/",
"katex",
"marked",
"/^mdast/",
"reading-time",
"/^remark-/",
"/^rehype-/"
]
}
]
}