-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
61 lines (61 loc) · 1.48 KB
/
Copy pathrenovate.json
File metadata and controls
61 lines (61 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":automergeDigest",
":automergePatch",
":automergeMinor"
],
"timezone": "Europe/Berlin",
"schedule": ["before 6am on monday"],
"labels": ["dependencies", "renovate"],
"prHourlyLimit": 5,
"prConcurrentLimit": 10,
"packageRules": [
{
"description": "Auto-merge patch and minor updates",
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash"
},
{
"description": "Auto-merge GitHub Actions updates",
"matchManagers": ["github-actions"],
"automerge": true
},
{
"description": "Auto-merge Docker image updates",
"matchDatasources": ["docker"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true
},
{
"description": "Security updates - high priority",
"matchCategories": ["security"],
"labels": ["security", "priority-high"],
"automerge": true,
"schedule": ["at any time"]
},
{
"description": "Major updates require manual review",
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["major-update", "review-required"]
}
],
"docker": {
"enabled": true
},
"npm": {
"enabled": true
},
"pip_requirements": {
"enabled": true
},
"github-actions": {
"enabled": true
}
}