-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathrenovate.json
More file actions
40 lines (40 loc) · 1016 Bytes
/
renovate.json
File metadata and controls
40 lines (40 loc) · 1016 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"prHourlyLimit": 5,
"prConcurrentLimit": 10,
"packageRules": [
{
"description": "Group Rust/Cargo dependency updates",
"groupName": "rust",
"matchManagers": ["cargo"]
},
{
"description": "Group Go module updates",
"groupName": "go",
"matchManagers": ["gomod"]
},
{
"description": "Group npm/Node.js dependency updates",
"groupName": "npm",
"matchManagers": ["npm", "pnpm", "yarn"]
},
{
"description": "Group GitHub Actions updates",
"groupName": "github-actions",
"matchManagers": ["github-actions"]
},
{
"description": "Group mise tool version updates",
"groupName": "mise-tools",
"matchManagers": ["mise"]
},
{
"description": "Group Docker-related updates",
"groupName": "docker",
"matchManagers": ["dockerfile", "docker-compose"]
}
]
}