-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathrenovate.json5
More file actions
130 lines (130 loc) · 2.61 KB
/
renovate.json5
File metadata and controls
130 lines (130 loc) · 2.61 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
':prConcurrentLimitNone',
],
rangeStrategy: 'auto',
minimumReleaseAge: '3 days',
schedule: 'every weekend',
timezone: 'America/Los_Angeles',
packageRules: [
{
matchUpdateTypes: [
'patch',
],
labels: [
'semver: patch',
],
},
{
matchUpdateTypes: [
'minor',
],
labels: [
'semver: minor',
],
},
{
matchUpdateTypes: [
'major',
],
labels: [
'semver: major',
],
},
{
matchFileNames: [
'client/**',
],
lockFileMaintenance: {
enabled: true,
recreateWhen: 'always',
},
rangeStrategy: 'replace',
rebaseWhen: 'behind-base-branch',
},
{
groupName: 'Language & Runtimes',
matchDatasources: [
'docker',
],
},
{
groupName: 'Terraform',
matchManagers: [
'terraform',
],
},
{
groupName: 'GitHub Actions',
matchManagers: [
'github-actions',
],
pinDigests: true,
},
{
groupName: 'Python',
matchCategories: [
'python',
],
matchUpdateTypes: [
'minor',
'patch',
],
},
{
groupName: 'JS Runtime',
matchCategories: [
'js',
'node',
],
matchUpdateTypes: [
'minor',
'patch',
],
matchDepTypes: [
'dependencies',
],
},
{
groupName: 'JS Build',
matchCategories: [
'js',
'node',
],
matchDepTypes: [
'devDependencies',
],
},
{
groupName: 'Playwright',
matchPackageNames: [
'playwright',
'@playwright/test',
'mcr.microsoft.com/playwright',
],
schedule: 'before 9am',
prBodyNotes: [
':warning: Playwright dependencies may roll out on a staggered schedule.',
'If tests are not passing due to version conflict, wait for other packages',
'and re-run renovate on this PR to retry the update.',
],
},
{
groupName: 'OpenTelemetry',
matchCategories: [
'python',
],
schedule: 'before 9am',
prBodyNotes: [
':warning: OpenTelemetry dependencies may roll out on a staggered schedule.',
'If tests are not passing due to version conflict, wait for other packages',
'and re-run renovate on this PR to retry the update.',
],
matchPackageNames: [
'opentelemetry-{/,}**',
],
},
],
}