forked from rapydo/do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
114 lines (114 loc) · 3.34 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"commitMessageAction": "Bump",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}",
"branchConcurrentLimit": 0,
"pre-commit": {
"enabled": true,
"groupName": "pre-commit",
"fileMatch": ["^pre-commit-projects-config.yaml$"]
},
"pip_requirements": {
"fileMatch": ["^requirements.dev.txt$", "^requirements.types.txt$"]
},
"github-actions": {
"fileMatch": ["controller/templates/github_actions-.*.yml.j2$"]
},
"regexManagers": [
{
"fileMatch": ["controller/packages.py$"],
"matchStrings": ["COMPOSE_VERSION = \"(?<currentValue>.*?)\"\\n"],
"depNameTemplate": "docker/compose",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["controller/packages.py$"],
"matchStrings": ["BUILDX_VERSION = \"(?<currentValue>.*?)\"\\n"],
"depNameTemplate": "docker/buildx",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": ["ENV ANGULAR_VERSION (?<currentValue>.*?)\\n"],
"depNameTemplate": "@angular/cli",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": ["ENV CYPRESS_VERSION (?<currentValue>.*?)\\n"],
"depNameTemplate": "cypress",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN npm install -.* ts-json-schema-generator@(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "ts-json-schema-generator",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN npm install -.* sitemap-generator-cli@(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "sitemap-generator-cli",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN npm install -.* ts-json-schema-generator@(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "ts-json-schema-generator",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN npm install -.* dotenv@(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "dotenv",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN npm install -.* deepmerge@(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "deepmerge",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": ["RUN npm install -.* ajv@(?<currentValue>.*?)[\\n| ]"],
"depNameTemplate": "ajv",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN npm install -.* ajv-formats@(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "ajv-formats",
"datasourceTemplate": "npm"
},
{
"fileMatch": [".*/Dockerfile$"],
"matchStrings": [
"RUN pip3 install .* certbot==(?<currentValue>.*?)[\\n| ]"
],
"depNameTemplate": "certbot",
"datasourceTemplate": "pypi"
}
],
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"automerge": true,
"automergeStrategy": "squash"
}
]
}