forked from ecamp/ecamp3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
191 lines (191 loc) · 6.18 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"extends": [
"mergeConfidence:all-badges",
"config:recommended",
":prConcurrentLimitNone"
],
"constraints": {
"node": "22.12.0",
"php": "8.3.13"
},
"automergeType": "branch",
"rebaseWhen": "conflicted",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["on tuesday and wednesday"]
},
"vulnerabilityAlerts": {
"automerge": true
},
"labels": ["renovate"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "lockFileMaintenance"],
"automerge": true
},
{
"extends": ["monorepo:vue"],
"matchUpdateTypes": ["major"],
"matchFileNames": ["print/package.json", "pdf/package.json"],
"dependencyDashboardApproval": true,
"groupName": "vue-major-print-pdf"
},
{
"extends": ["monorepo:vue"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["print/package.json", "pdf/package.json"],
"dependencyDashboardApproval": false,
"groupName": "vue-minor-print-pdf"
},
{
"extends": ["monorepo:vue"],
"matchUpdateTypes": ["major", "minor", "patch"],
"matchFileNames": ["frontend/package.json"],
"dependencyDashboardApproval": true,
"groupName": "vue-frontend"
},
{
"matchDepNames": ["@vue/test-utils"],
"matchFileNames": ["frontend/package.json"],
"dependencyDashboardApproval": true,
"groupName": "vue-test-utils-frontend"
},
{
"matchDepNames": ["sass"],
"dependencyDashboardApproval": true
},
{
"matchDepNames": ["php", "dunglas/frankenphp"],
"automerge": false,
"groupName": "php"
},
{
"groupName": "tiptap",
"matchPackageNames": ["/^@tiptap//"]
},
{
"matchDepNames": [
"browserless/chrome",
"caddy",
"krakjoe/apcu",
"mailhog/mailhog",
"phpmyadmin/phpmyadmin",
"postgres",
"python",
"qoomon/docker-host"
],
"groupName": "docker-images",
"schedule": ["after 10pm on sunday", "before 7am on monday"]
},
{
"matchDepNames": ["browserless/chrome"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)-(?<compatibility>\\w+)-(?<build>\\d+)\\.(\\d+)\\.(\\d+)?$"
},
{
"matchDepNames": ["dunglas/frankenphp"],
"versioning": "regex:^(?<build>\\d+)\\.(?<revision>\\d+)-(?<compatibility>\\w+)(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?$"
},
{
"matchDepNames": ["postgres"],
"allowedVersions": "15-alpine"
},
{
"matchDepNames": ["cypress", "cypress/included"],
"automerge": false,
"groupName": "cypress"
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^api/phpunit.xml.dist$"],
"matchStrings": [
"<server name=\"SYMFONY_PHPUNIT_VERSION\" value=\"(?<currentValue>[^\"]+)\" />"
],
"depNameTemplate": "phpunit/phpunit",
"datasourceTemplate": "packagist"
},
{
"customType": "regex",
"fileMatch": ["^api/Dockerfile$"],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s(ENV|ARG) .*?_VERSION=(?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
},
{
"customType": "regex",
"fileMatch": ["^.helm/ecamp3/values.ya?ml$"],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)?\\s.*tag: \"(?<currentValue>.*)\"\\s"
]
},
{
"customType": "regex",
"fileMatch": ["^.github/workflows/.+\\.ya?ml$"],
"matchStrings": ["php-version: '(?<currentValue>[0-9.]+)'"],
"depNameTemplate": "php",
"packageNameTemplate": "php/php-src",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>\\w+)?$",
"extractVersionTemplate": "^php-(?<version>.*)$"
},
{
"customType": "regex",
"fileMatch": ["^renovate.json$"],
"matchStrings": ["\"php\": \"(?<currentValue>[^\"]+).*\".*"],
"depNameTemplate": "php",
"packageNameTemplate": "php/php-src",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>\\w+)?$",
"extractVersionTemplate": "^php-(?<version>.*)$"
},
{
"customType": "regex",
"fileMatch": ["^.github/workflows/.+\\.ya?ml$"],
"matchStrings": ["tools: composer:(?<currentValue>[0-9.]+)"],
"depNameTemplate": "composer",
"packageNameTemplate": "composer/composer",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+).*?$"
},
{
"customType": "regex",
"fileMatch": ["^.github/workflows/.+\\.ya?ml$"],
"matchStrings": ["node-version: '(?<currentValue>[^']+)'.*"],
"depNameTemplate": "node",
"packageNameTemplate": "nodejs/node",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+).*?$",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"customType": "regex",
"fileMatch": [".nvmrc"],
"matchStrings": ["(?<currentValue>[^'\n]+).*"],
"depNameTemplate": "node",
"packageNameTemplate": "nodejs/node",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+).*?$",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"customType": "regex",
"fileMatch": ["^renovate.json$"],
"matchStrings": ["\"node\": \"(?<currentValue>[^\"]+).*\".*"],
"depNameTemplate": "node",
"packageNameTemplate": "nodejs/node",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+).*?$",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"customType": "regex",
"fileMatch": ["^.github/workflows/.+\\.ya?ml$"],
"matchStrings": [
"image:\\s+'(?<depName>.*):(?<currentValue>.*)@(?<currentDigest>.*)'\\s"
],
"datasourceTemplate": "docker"
}
]
}