-
Notifications
You must be signed in to change notification settings - Fork 16
/
renovate.json
79 lines (79 loc) · 1.79 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"matchManagers": ["hermit"],
"matchPackageNames": ["python3"],
"allowedVersions": "<= 3.10",
"minimumReleaseAge": "120 days"
},
{
"matchManagers": ["gradle"],
"matchPaths": ["app/"],
"matchPackageNames": ["com.android.tools.build:gradle"],
"enabled": false
},
{
"matchManagers": ["gradle"],
"matchPaths": ["app/"],
"enabled": true,
"minimumReleaseAge": "120 days"
},
{
"matchManagers": ["swift"],
"matchPaths": ["app/ios"],
"minimumReleaseAge": "120 days"
},
{
"matchManagers": ["pip_requirements"],
"matchPaths": ["firmware"],
"minimumReleaseAge": "120 days"
},
{
"matchManagers": ["npm"],
"matchPaths": ["server", "app/style"],
"minimumReleaseAge": "120 days"
},
{
"matchManagers": ["git-submodules"],
"matchPaths": ["/"],
"matchPackageNames": ["firmware/third-party/FreeRTOS"],
"enabled": false
},
{
"matchManagers": ["git-submodules"],
"matchPaths": ["/"],
"enabled": true,
"minimumReleaseAge": "120 days"
}
],
"extends": [
"config:base",
":preserveSemverRanges",
":disableRateLimiting",
":disableDependencyDashboard",
"github>Turbo87/renovate-config//rust/updateToolchain"
],
"ignorePaths": [
"cli/**",
"docs/**",
"datadog/**",
"factory-test/**",
"fastlane/**",
"nodes/**",
"web/**"
],
"enabledManagers": [
"cocoapods",
"hermit",
"regex",
"swift",
"gradle",
"npm",
"dockerfile",
"pip_requirements",
"git-submodules"
],
"labels": ["dependencies", "task-list-completed-disable"],
"platformCommit": true
}