-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathrenovate.json
More file actions
91 lines (91 loc) · 2.56 KB
/
renovate.json
File metadata and controls
91 lines (91 loc) · 2.56 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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"schedule": [
"before 9am on monday"
],
"automerge": false,
"labels": [
"dependencies"
],
"prConcurrentLimit": 3,
"packageRules": [
{
"description": "Major updates require dashboard approval",
"matchUpdateTypes": [
"major"
],
"dependencyDashboardApproval": true
},
{
"description": "Kotlin updates require approval (affects consumers' kotlin-stdlib)",
"matchPackageNames": [
"/^org\\.jetbrains\\.kotlin([.:]|$)/"
],
"dependencyDashboardApproval": true
},
{
"description": "AndroidX libraries used in published modules - require approval",
"groupName": "AndroidX libraries",
"dependencyDashboardApproval": true,
"matchPackageNames": [
"androidx.core:core",
"androidx.core:core-ktx",
"androidx.annotation:annotation",
"androidx.activity:activity-compose",
"androidx.lifecycle:lifecycle-runtime",
"androidx.lifecycle:lifecycle-runtime-ktx",
"androidx.savedstate:savedstate",
"androidx.startup:startup-runtime",
"androidx.metrics:metrics-performance"
]
},
{
"description": "Compose libraries - all updates require approval (overrides AndroidX group)",
"groupName": "Compose",
"dependencyDashboardApproval": true,
"matchPackageNames": [
"/^androidx\\.compose/"
]
},
{
"description": "Maven publish plugin requires manual verification",
"dependencyDashboardApproval": true,
"matchPackageNames": [
"/com\\.vanniktech\\.maven\\.publish/"
]
},
{
"description": "Square libraries (OkHttp, Radiography, etc) - require approval as transitive deps",
"groupName": "Square libraries",
"dependencyDashboardApproval": true,
"matchPackageNames": [
"/^com\\.squareup\\./"
]
},
{
"description": "Build tooling plugins",
"groupName": "Build tooling",
"matchPackageNames": [
"/com\\.diffplug\\.spotless/",
"/io\\.gitlab\\.arturbosch\\.detekt/",
"/com\\.getkeepsafe\\.dexcount/",
"/org\\.jetbrains\\.kotlinx\\.binary-compatibility-validator/"
]
},
{
"description": "GitHub Actions - automerge minor/patch",
"matchManagers": [
"github-actions"
],
"groupName": "GitHub Actions",
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
}