-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
52 lines (52 loc) · 1.31 KB
/
renovate.json
File metadata and controls
52 lines (52 loc) · 1.31 KB
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
{
"pinVersions": false,
"semanticCommits": true,
"semanticPrefix": "build",
"separateMajorMinor": false,
"prHourlyLimit": 2,
"labels": ["target: minor", "action: merge"],
"timezone": "America/Tijuana",
"lockFileMaintenance": {
"enabled": true
},
"schedule": ["after 10pm every weekday", "before 4am every weekday", "every weekend"],
"baseBranches": ["master"],
"ignoreDeps": ["@types/node"],
"includePaths": [
"WORKSPACE",
"package.json",
"modules/**/package.json",
"integration/**/package.json",
".github/workflows/**/*.yml"
],
"ignorePaths": ["modules/builders/testing/**"],
"packageRules": [
{
"packagePatterns": ["^@angular/.*", "^@angular-devkit/.*", "^@schematics/.*", "angular/dev-infra"],
"groupName": "angular",
"pinVersions": false
},
{
"packagePatterns": ["^@bazel/.*", "^build_bazel.*", "^bazel_toolchains$"],
"groupName": "bazel",
"pinVersions": false
},
{
"packageNames": ["typescript"],
"separateMinorPatch": true
},
{
"packageNames": ["typescript"],
"updateTypes": ["minor", "major"],
"enabled": false
},
{
"matchCurrentVersion": "0.0.0-PLACEHOLDER",
"enabled": false
},
{
"matchCurrentVersion": "/_VERSION$/",
"enabled": false
}
]
}