-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
renovate.json
33 lines (33 loc) · 1011 Bytes
/
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
{
"extends": [
"config:base",
":semanticCommits",
":semanticCommitTypeAll(chore)"
],
"packageRules": [
{
"groupSlug": "all",
"packagePatterns": ["*"],
"allowedVersions": "!/^(?i).*[-_\\.](Alpha|Beta|RC|M|EA|Snap|snapshot|jboss|atlassian)[-_\\.]?[0-9]?.*$/",
"groupName": "all dependencies"
},
{
"description": "Disable major updates for centos",
"matchPackageNames": ["centos"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Disable major updates for Spring because they need a newer Java version",
"matchPackagePrefixes": ["org.springframework"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Disable automatic updates for the Antlr because of the very tightly coupled visitor",
"matchPackagePrefixes": ["nl.basjes.antlr", "org.antlr"],
"matchUpdateTypes": ["major", "minor", "patch", "pin"],
"enabled": false
}
]
}