-
Notifications
You must be signed in to change notification settings - Fork 105
/
renovate.json5
61 lines (61 loc) · 1.77 KB
/
renovate.json5
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"
],
"prConcurrentLimit": 3,
"rebaseWhen": "conflicted",
"labels": [
"dependencies"
],
"packageRules": [
// some dependencies that we auto-merge release very often and even the auto-merges create a lot of
// noise, so we slow it down a bit
{
"description": "Automerge test dependencies in a single PR",
"groupName": "Test dependencies",
"matchPackageNames": [
"org.mockito:mockito-core",
"com.tngtech.archunit:archunit",
"org.apache.maven.plugins:maven-surefire-plugin",
"me.fabriciorby:maven-surefire-junit5-tree-reporter",
"com.google.truth:truth",
"org.jacoco:jacoco-maven-plugin", // coverage plugin
"org.apache.commons:commons-compress" // only used by tests
],
"matchPackagePrefixes": [
"org.junit.jupiter:",
],
"automerge": true,
"schedule": "on the 17th day of the month"
},
{
"description": "Automerge Maven plugins in a single PR",
"groupName": "Maven plugins",
"matchPackagePrefixes": [
"org.apache.maven.plugins:"
],
"schedule": "on the 23rd day of the month",
"automerge": true
},
{
"description": "Automerge logging dependencies in a single PR",
"groupName": "logging dependencies",
"matchPackagePrefixes": [
"org.slf4j:",
"ch.qos.logback:"
],
"automerge": true,
"schedule": "on the 4th day of the month"
},
{
"description": "Automerge dependencies",
"matchPackageNames": [
"io.github.classgraph:classgraph",
],
"automerge": true,
"schedule": "monthly"
}
],
"timezone": "Europe/Berlin"
}