forked from opentripplanner/OpenTripPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
85 lines (85 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"prConcurrentLimit": 3,
"labels": [
"skip changelog"
],
"rebaseWhen": "conflicted",
"enabledManagers": [
"npm",
"maven",
"pip_requirements"
],
"packageRules": [
{
"matchPackageNames": [
"jakarta.xml.bind:jakarta.xml.bind-api",
// need code changes, don't want to upgrade
"io.github.origin-energy:java-snapshot-testing-junit5",
"commons-cli:commons-cli",
"org.processing:core",
// Skanetrafiken doesn't want automatic updates for these Azure libraries
"com.microsoft.azure:azure-servicebus",
"com.azure.resourcemanager:azure-resourcemanager-servicebus",
"com.azure:azure-core",
"com.azure:azure-messaging-servicebus"
],
"enabled": false
},
{
// https://github.com/graphql-java-kickstart/renovate-config/blob/main/default.json
"description": "GraphQL Java (ignoring snapshot builds)",
"matchPackagePrefixes": [
"com.graphql-java:"
],
"allowedVersions": "/^[0-9]+\\.[0-9]+(\\.[0-9]+)?$/"
},
{
"matchPackageNames": [
"org.onebusaway:onebusaway-gtfs",
"com.google.cloud:libraries-bom",
"@graphql-codegen/add",
"@graphql-codegen/cli",
"@graphql-codegen/java",
"@graphql-codegen/java-resolvers",
"graphql"
],
"extends": [
"schedule:monthly"
]
},
{
"description": "in order to keep review burden low, don't update these quite so frequently",
"matchPackageNames": [
"mkdocs-material"
],
"matchPackagePrefixes": [
"org.apache.lucene:"
],
"extends": [
"schedule:quarterly"
]
},
{
"description": "automatically merge test and logging dependencies",
"matchPackageNames": [
"org.mockito:mockito-core",
"com.tngtech.archunit:archunit",
"org.apache.maven.plugins:maven-surefire-plugin",
"org.jacoco:jacoco-maven-plugin", // coverage plugin
"org.apache.commons:commons-compress", // only used by tests
"ch.qos.logback:logback-classic"
],
"matchPackagePrefixes": [
"org.junit.jupiter:",
"org.slf4j:"
],
"automerge": true,
"schedule": "after 11pm and before 5am every weekday"
}
],
"timezone": "Europe/Berlin"
}