-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathrenovate.json
46 lines (46 loc) · 1.23 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automerge": false,
"dependencyDashboard": true,
"ignoreDeps": [],
"labels": ["dependencies", "skip-ci"],
"postUpdateOptions": ["yarnDedupeHighest"],
"prConcurrentLimit": 30,
"prHourlyLimit": 4,
"rebaseWhen": "conflicted",
"schedule": "on sunday at 9:00am",
"timezone": "Asia/Shanghai",
"vulnerabilityAlerts": {
"labels": ["security"],
"automerge": true
},
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"groupName": "non-major dependencies",
"groupSlug": "minor-patch-updates"
},
{
"groupName": "Tauri dependencies",
"groupSlug": "tauri-deps",
"matchPackagePatterns": ["^@tauri-apps/"],
"matchManagers": ["npm"]
},
{
"groupName": "UnoCSS dependencies",
"groupSlug": "unocss-deps",
"matchPackagePatterns": ["^@unocss/"],
"matchManagers": ["npm"]
},
{
"description": "Rust crate updates",
"matchManagers": ["cargo"],
"groupName": "Rust dependencies",
"groupSlug": "rust-deps",
"enabled": true,
"registryUrls": ["https://crates.io"]
}
],
"enabledManagers": ["npm", "cargo"],
"updateInternalDeps": true
}