-
Notifications
You must be signed in to change notification settings - Fork 45
/
renovate.json5
49 lines (49 loc) · 1.22 KB
/
renovate.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
{
extends: ["config:recommended"],
assignees: ["dangmai"],
lockFileMaintenance: {
enabled: true
},
customManagers: [
// From https://docs.renovatebot.com/modules/manager/regex/#advanced-capture
{
customType: "regex",
description: "Update _VERSION variables in Dockerfiles",
fileMatch: ["(^|/|\\.)Dockerfile$", "(^|/)Dockerfile\\.[^/]*$"],
matchStrings: [
"# renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
]
}
],
packageRules: [
{
matchUpdateTypes: [
"minor",
"patch",
"pin",
"digest",
"lockFileMaintenance"
],
automerge: true
},
{
matchPackageNames: ["@types/node"],
enabled: false
},
{
matchPackageNames: ["node"],
matchUpdateTypes: ["major"],
enabled: false
},
{
matchPackageNames: ["eclipse-temurin"],
matchUpdateTypes: ["major"],
enabled: false
},
{
groupName: "typescript-generator",
additionalBranchPrefix: "",
matchPackageNames: ["/typescript-generator/"]
}
]
}