-
Notifications
You must be signed in to change notification settings - Fork 30
/
renovate.json
50 lines (50 loc) · 1.53 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
{
"extends": ["config:recommended", ":preserveSemverRanges"],
"vulnerabilityAlerts": {
"labels": ["security", "dependencies"],
"automerge": true
},
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchFileNames": ["build.gradle"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "gradle dependencies not Major update",
"enabled": true,
"matchPackageNames": ["!org.sonarsource.java:sonar-java-plugin"]
},
{
"matchFileNames": ["package.json"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "npm dependencies not Major update",
"enabled": true,
"matchPackageNames": ["!three", "!@types/three"]
},
{
"matchPackageNames": [
"JamesIves/github-pages-deploy-action",
"SonarSource/sonarcloud-github-action",
"actions/setup-java",
"alexellis/upload-assets",
"rasmus-saks/release-a-changelog-action",
"gradle",
"nginx",
"ruby"
],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "other updates",
"enabled": true
},
{
"matchPackageNames": ["@types/three", "org.sonarsource.java:sonar-java-plugin", "three"],
"groupName": "Almost always breaking changes",
"enabled": false
}
],
"timezone": "Europe/Berlin",
"schedule": ["on the 2nd and 4th day instance on sunday after 9pm"]
}