-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrenovate.json
58 lines (58 loc) · 1.64 KB
/
renovate.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"schedule": [
"after 6pm on the 6th day of the month"
],
"ignoreDeps": [
"com.mojang:minecraft",
"com.github.stefvanschie.inventoryframework:IF"
],
"packageRules": [
{
"description": "Correct version handling for dependencies with format major.minor.patch+mcver",
"matchPackageNames": [
"net.fabricmc.fabric-api:fabric-api",
"eu.pb4:sgui"
],
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(?:\\+(?<compatibility>.*))?$"
},
{
"description": "Correct version handling for dependencies with format major.minor.patch.prerelease+mcver",
"matchPackageNames": [
"eu.pb4:placeholder-api"
],
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(?<prerelease>[^.-]+)?(?:\\+(?<compatibility>.*))?$"
},
{
"description": "Towny version handling",
"matchPackageNames": [
"com.palmergames.bukkit.towny:towny"
],
"versioning": "regex:^0\\.(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?$"
},
{
"description": "Ignore Towny patch updates",
"matchPackageNames": [
"com.palmergames.bukkit.towny:towny"
],
"matchUpdateTypes": "patch",
"enabled": false
},
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchUpdateTypes": [
"minor",
"patch"
],
"matchPackageNames": [
"*"
]
}
],
"prHourlyLimit": 4,
"semanticCommitType": "build"
}