Skip to content

Commit ccf55ae

Browse files
author
mafyuh
committedNov 3, 2024
Update .github/renovate.json
1 parent bbb7623 commit ccf55ae

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed
 

‎.github/renovate.json

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:recommended"
4+
"config:base"
55
],
66
"dependencyDashboardTitle": ":robot: Renovate Dashboard",
77
"regexManagers": [
88
{
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",
921
"fileMatch": [
10-
"ansible/.+\\.ya?ml$",
11-
"docker/.+\\.ya?ml$",
12-
"kubernetes/.+\\.ya?ml$",
13-
"packer/.+\\.hcl$",
1422
"terraform/.+\\.tf$"
15-
]
23+
],
24+
"matchStrings": [
25+
"source\\s*=\\s*\"(?<depName>[^\"]+):(?!/)\\S+@(?<currentValue>\\S+)\""
26+
],
27+
"datasourceTemplate": "terraform",
28+
"currentValueTemplate": "{{{ currentValue }}}"
1629
}
1730
]
1831
}

0 commit comments

Comments
 (0)
Please sign in to comment.