-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate-config.json
117 lines (117 loc) · 2.85 KB
/
renovate-config.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Standard preset across Sponge repositories",
"extends": [
"config:base"
],
"labels": [
"type: dependencies"
],
"schedule": [
"after 5pm on the 2nd day of the month"
],
"packageRules": [
{
"matchSourceUrlPrefixes": [
"https://github.com/google/error-prone"
],
"groupName": "error-prone monorepo"
},
{
"matchPackagePrefixes": [
"com.google.auto.value:"
],
"groupName": "auto-value monorepo"
},
{
"matchSourceUrlPrefixes": [
"https://github.com/KyoriPowered/adventure"
],
"groupName": "adventure monorepo"
},
{
"matchSourceUrlPrefixes": [
"https://github.com/immutables/immutables"
],
"groupName": "immutables monorepo"
},
{
"matchUpdateTypes": ["patch"],
"excludePackageNames": ["gradle"],
"groupName": "patch dependency changes"
},
{
"description": "Correct Guava version handling",
"matchPackagePrefixes": ["com.google.guava:"],
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-(?<compatibility>.*))?$"
},
{
"description": "Correct CodeNarc version handling",
"matchPackagePrefixes": ["org.codenarc:CodeNarc"],
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-(?<compatibility>.*))?$"
},
{
"matchManagers": ["github-actions", "gradle-wrapper"],
"groupName": "build deps and github actions"
},
{
"matchDepTypes": ["plugin"],
"groupName": "build deps and github actions"
},
{
"matchPaths": ["build-logic/*", "buildSrc/*"],
"groupName": "build deps and github actions"
},
{
"matchDatasources": [ "maven" ],
"registryUrls": [
"https://repo.spongepowered.org/repository/maven-public/"
]
},
{
"matchDatasources": [
"npm"
],
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major npm dependencies",
"groupSlug": "all-npm-minor-patch"
},
{
"matchDatasources": [
"docker"
],
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major docker images",
"groupSlug": "all-docker-minor-patch"
},
{
"matchDatasources": [
"pypi"
],
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major python dependencies",
"groupSlug": "all-pypi-minor-patch"
}
],
"prHourlyLimit": 4,
"semanticCommitType": "build",
"commitMessagePrefix": "chore(deps): "
}