-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathrenovate.json
99 lines (99 loc) · 2.09 KB
/
renovate.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"enabled": true,
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"commitMessagePrefix": "deps:",
"baseBranches": [
"/^stable\\/8\\..*/",
"main"
],
"dependencyDashboard": true,
"prConcurrentLimit": 30,
"prHourlyLimit": 2,
"updateNotScheduled": false,
"schedule": [
"at any time"
],
"vulnerabilityAlerts": {
"labels": [
"area/security"
],
"enabled": true
},
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"addLabels": [
"automerge"
]
},
"packageRules": [
{
"description": "Only patch updates for our maintenance branches to avoid breaking changes.",
"matchBaseBranches": [
"/^stable\\/8\\..*/"
],
"matchUpdateTypes": [
"minor",
"major"
],
"enabled": false
},
{
"description": "Digest updates cover all use cases since they are used as base, so we disable other types.",
"matchManagers": [
"dockerfile"
],
"matchFileNames": [
"Dockerfile"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"enabled": true
},
{
"matchManagers": [
"maven"
],
"allowedVersions": "!/0.8.9/",
"matchPackageNames": [
"org.jacoco{/,}**"
]
},
{
"description": "Exclude BPMN model dependencies which target JDK 11 (since this library targets JDK 8)",
"matchManagers": [
"maven"
],
"allowedVersions": "<7.20.0",
"matchPackageNames": [
"org.camunda.bpmn.model{/,}**"
]
},
{
"description": "Exclude SNAPSHOT versions, renovate may suggest them for pre-release values.",
"matchManagers": [
"maven"
],
"allowedVersions": "!/-SNAPSHOT$/",
"matchPackageNames": [
"/.*/"
]
},
{
"description": "Automerge all updates with green CI.",
"automerge": true,
"addLabels": [
"automerge"
],
"matchPackageNames": [
"*"
]
}
]
}