-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
34 lines (34 loc) · 921 Bytes
/
Copy pathrenovate.json
File metadata and controls
34 lines (34 loc) · 921 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "America/New_York",
"schedule": ["before 5am on monday"],
"labels": ["dependencies"],
"prConcurrentLimit": 3,
"prHourlyLimit": 2,
"minimumReleaseAge": "7 days",
"configMigration": true,
"lockFileMaintenance": { "enabled": true },
"packageRules": [
{
"description": "Hold major upgrades in the Dependency Dashboard until approved",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "Group Rust updates",
"matchManagers": ["cargo"],
"groupName": "Rust dependencies"
},
{
"description": "Group npm dev dependency updates",
"matchManagers": ["bun"],
"groupName": "npm dev dependencies"
},
{
"description": "Group GitHub Actions updates",
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions"
}
]
}