-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
38 lines (38 loc) · 1.08 KB
/
Copy pathrenovate.json5
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": ["npm", "github-actions"],
"timezone": "America/Chicago",
"schedule": ["* 0-8 * * 1"],
"updateNotScheduled": false,
"minimumReleaseAge": "3 days",
"prHourlyLimit": 2,
"prConcurrentLimit": 5,
"packageRules": [
{
"description": "Automerge safe template dependency updates after CI passes.",
"matchManagers": ["npm"],
"matchFileNames": [
"bun/cli/package.json",
"bun/lib/package.json",
"node/cli/package.json",
"node/lib/package.json"
],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Keep major updates open for manual review.",
"matchManagers": ["npm"],
"matchFileNames": [
"bun/cli/package.json",
"bun/lib/package.json",
"node/cli/package.json",
"node/lib/package.json"
],
"matchUpdateTypes": ["major"],
"automerge": false
}
]
}