forked from opentripplanner/OpenTripPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
107 lines (107 loc) · 3.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"$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]+)?$/"
},
{
// at most monthly updates (as they tend to happen frequently)
"matchPackageNames": [
"org.onebusaway:onebusaway-gtfs",
"com.google.cloud:libraries-bom",
"com.google.guava:guava",
"@graphql-codegen/add",
"@graphql-codegen/cli",
"@graphql-codegen/java",
"@graphql-codegen/java-resolvers",
"graphql",
"io.micrometer:micrometer-registry-prometheus",
"io.micrometer:micrometer-registry-influx",
"org.entur.gbfs:gbfs-java-model"
],
// we don't use the 'monthly' preset because that only fires on the first day of the month
// when there might already other PRs open
"schedule": "on the 7th through 8th day of the month"
},
{
"description": "in order to keep review burden low, don't update these quite so frequently",
"matchPackagePrefixes": [
"org.apache.lucene:",
"io.netty:"
],
"extends": [
"schedule:quarterly"
]
},
{
"description": "automerge mkdocs-material every quarter",
"matchPackageNames": [
"mkdocs",
"mkdocs-material"
],
"extends": [
"schedule:quarterly"
],
"automerge": true
},
{
"description": "automatically merge test, logging and build 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",
// maven plugins
"org.codehaus.mojo:build-helper-maven-plugin",
"org.apache.maven.plugins:maven-gpg-plugin",
"org.apache.maven.plugins:maven-source-plugin",
"io.github.git-commit-id:git-commit-id-maven-plugin",
"com.hubspot.maven.plugins:prettier-maven-plugin",
"com.google.cloud.tools:jib-maven-plugin",
"org.apache.maven.plugins:maven-shade-plugin"
],
"matchPackagePrefixes": [
"org.junit.jupiter:",
"org.slf4j:"
],
"automerge": true,
"schedule": "after 11pm and before 5am every weekday"
}
],
"timezone": "Europe/Berlin"
}