-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathrenovate.json5
More file actions
47 lines (47 loc) · 1.18 KB
/
renovate.json5
File metadata and controls
47 lines (47 loc) · 1.18 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
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
':dependencyDashboard',
'group:all',
'schedule:weekly',
],
customManagers: [
{
description: 'Maven dependencies managed by rules_jvm_external',
customType: 'regex',
managerFilePatterns: [
'/^MODULE.bazel$/',
],
matchStringsStrategy: 'recursive',
matchStrings: [
// First narrow down the search to those dependencies in a Starlark list annotated with
// a special comment.
'# renovate: keep updated[^\\]]*]',
// Match all lines of the form:
// "com.google.guava:guava:jar:28.2-jre",
'\\n\\s*"(?<depName>[^:]+:[^:]+):(?:jar:)?(?<currentValue>\\d[^"]*)",',
],
datasourceTemplate: 'maven',
},
],
packageRules: [
{
// Assign regex matches to a separate group since these PRs require manual lockfile updates.
matchManagers: [
'custom.regex',
],
groupName: 'Maven deps',
groupSlug: 'maven',
},
{
matchDepTypes: [
'system',
],
matchManagers: [
'maven',
],
enabled: false,
},
],
}