-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrenovate.json
46 lines (46 loc) · 1.13 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
{
"extends": [
"config:base",
":gitSignOff",
":disableDependencyDashboard"
],
"poetry": {
"enabled": true
},
"lockFileMaintenance": {
"enabled": true,
"labels": ["ignore"],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
"labels": [
"dependency"
],
"ignoreDeps": [
"boto3",
"botocore"
],
"regexManagers": [
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["ARG GO_VERSION=(?<currentValue>.*?)\\n"],
"extractVersionTemplate": "^go(?<version>.*)$",
"datasourceTemplate": "github-tags",
"depNameTemplate": "golang/go"
},
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["ARG KUSTOMIZE_VERSION=(?<currentValue>.*?)\\n"],
"extractVersionTemplate": "^kustomize/v(?<version>.*)$",
"datasourceTemplate": "github-releases",
"depNameTemplate": "kubernetes-sigs/kustomize"
},
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": ["ARG POETRY_VERSION=(?<currentValue>.*?)\\n"],
"datasourceTemplate": "github-releases",
"depNameTemplate": "python-poetry/poetry"
}
]
}