forked from AmadeusITGroup/otter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.renovaterc.json5
129 lines (127 loc) · 2.98 KB
/
.renovaterc.json5
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>AmadeusITGroup/otter//tools/renovate/base",
"github>AmadeusITGroup/otter//tools/renovate/group/design-factory",
"github>AmadeusITGroup/otter//tools/renovate/managers/github-node-version.json5",
":labels(dependencies)"
],
"timezone": "Europe/Paris",
"ignorePaths": [
"**/node_modules/**"
],
"enabledManagers": [
"npm",
"github-actions",
"gradle",
"maven",
"regex"
],
"labels": [
"dependencies"
],
"baseBranches": [
"main",
"/^release\\/.*-next$/"
],
"minimumReleaseAge": "5 days",
"internalChecksFilter": "strict",
"packageRules": [
{
"matchPackageNames": [
"typescript",
"eslint",
"@yarnpkg/sdks"
],
"postUpgradeTasks": {
"commands": [
"yarn install",
"yarn sdks"
],
"executionMode": "branch",
"fileFilters": [
".yarn/sdks/**"
]
}
},
{
//Major update of chalk disabled as it drops support on CommonJS
"matchUpdateTypes": [
"major"
],
"matchCurrentVersion": "<5",
"matchPackageNames": [
"chalk"
],
"enabled": false
},
{
//Major update of globby disabled as it drops support on CommonJS
"matchUpdateTypes": [
"major"
],
"matchCurrentVersion": "<14",
"matchPackageNames": [
"globby"
],
"enabled": false
},
{
// Reduce the updates on Next to let them handle by the Main branch
"matchUpdateTypes": [
"bump",
"digest",
"lockFileMaintenance",
"minor",
"patch",
"pinDigest"
],
"matchBaseBranches": [
"/.*-next$/"
],
"enabled": false
},
{
// This rule disable the upgrade of the gaurav-nelson/github-action-markdown-link-check
// TODO: re-activate the upgrade when the following issue is fixed: gaurav-nelson/github-action-markdown-link-check#200
"matchPackagePatterns": [
".*markdown-link-check"
],
"enabled": false
},
// OpenAPI updates
{
"matchManagers": ["maven"],
"groupName": "Open API updates",
"groupSlug": "openapi",
"includePaths": [
"packages/@ama-sdk/schematics"
]
},
{
// We don't want to update this dep as we are still targeting a fork
"matchPackageNames": [
"io.swagger:swagger-codegen-cli"
],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "maven",
"depNameTemplate": "org.openapitools:openapi-generator",
"fileMatch": [
"packages/@ama-sdk/schematics/package\\.json"
],
"matchStrings": [
"\"openApiSupportedVersion\": \"~(?<currentValue>[^\"]+)\""
]
}
],
"github-actions": {
"fileMatch": [
"/(?:__dot__|__empty__\\.)github/.*/.+\\.ya?ml$"
]
}
}