-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrenovate.json
More file actions
30 lines (30 loc) · 812 Bytes
/
renovate.json
File metadata and controls
30 lines (30 loc) · 812 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"mergeConfidence:all-badges"
],
"minimumReleaseAge": "14 days",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 8am on monday"]
},
"packageRules": [
{
"description": "Suppress PRs for updates with low or neutral confidence",
"matchConfidence": ["low", "neutral"],
"enabled": false
},
{
"description": "Auto-merge patch updates with high+ confidence",
"matchUpdateTypes": ["patch"],
"matchConfidence": ["high", "very high"],
"automerge": true
},
{
"description": "Require manual review for minor and major updates",
"matchUpdateTypes": ["minor", "major"],
"automerge": false
}
]
}