File tree 1 file changed +19
-6
lines changed
1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
3
"extends" : [
4
- " config:recommended "
4
+ " config:base "
5
5
],
6
6
"dependencyDashboardTitle" : " :robot: Renovate Dashboard" ,
7
7
"regexManagers" : [
8
8
{
9
+ "description" : " Process Docker YML files" ,
10
+ "fileMatch" : [
11
+ " docker/.+\\ .y?ml$"
12
+ ],
13
+ "matchStrings" : [
14
+ " version: (?<currentValue>\\ S+)"
15
+ ],
16
+ "datasourceTemplate" : " docker" ,
17
+ "currentValueTemplate" : " {{{ currentValue }}}"
18
+ },
19
+ {
20
+ "description" : " Process Terraform files" ,
9
21
"fileMatch" : [
10
- " ansible/.+\\ .ya?ml$" ,
11
- " docker/.+\\ .ya?ml$" ,
12
- " kubernetes/.+\\ .ya?ml$" ,
13
- " packer/.+\\ .hcl$" ,
14
22
" terraform/.+\\ .tf$"
15
- ]
23
+ ],
24
+ "matchStrings" : [
25
+ " source\\ s*=\\ s*\" (?<depName>[^\" ]+):(?!/)\\ S+@(?<currentValue>\\ S+)\" "
26
+ ],
27
+ "datasourceTemplate" : " terraform" ,
28
+ "currentValueTemplate" : " {{{ currentValue }}}"
16
29
}
17
30
]
18
31
}
You can’t perform that action at this time.
0 commit comments