-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
76 lines (76 loc) · 2.21 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
70
71
72
73
74
75
76
{
"$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,
"gitIgnoredAuthors": ["185786754+actions-miku[bot]@users.noreply.github.com"],
"enabledManagers": ["github-actions", "npm"],
"labels": ["renovate"],
"packageRules": [
{
"groupName": "eslint",
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageSuffix": "({{parentDir}})",
"matchDatasources": ["npm"],
"matchFileNames": ["packages/eslint-config/**"],
"matchPackageNames": ["globals", "pkg-dir", "/eslint/"]
},
{
"groupName": "prettier",
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageSuffix": "({{parentDir}})",
"matchDatasources": ["npm"],
"matchFileNames": ["packages/prettier-config/**"],
"matchPackageNames": ["/^prettier/"]
},
{
"groupName": "stylelint",
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageSuffix": "({{parentDir}})",
"matchDatasources": ["npm"],
"matchFileNames": ["packages/stylelint-config/**"],
"matchPackageNames": [
"/^stylelint/",
"@double-great/stylelint-a11y",
"postcss-html"
]
},
{
"groupName": "tsconfig",
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageSuffix": "({{parentDir}})",
"matchDatasources": ["npm"],
"matchFileNames": ["packages/tsconfig/**"],
"matchPackageNames": ["typescript", "@cloudflare/workers-types"]
},
{
"groupName": "environment",
"matchPackageNames": [
"pkg-pr-new",
"tsup",
"/@changesets/",
"node",
"pnpm"
],
"matchUpdateTypes": ["minor", "patch"],
"addLabels": ["environment"]
},
{
"groupName": "devDependencies",
"matchDepTypes": ["devDependencies"],
"matchDatasources": ["npm"]
},
{
"groupName": "root dependencies",
"matchFileNames": ["package.json"]
},
{
"groupName": "GitHub Actions",
"matchDatasources": ["github-actions"]
}
]
}