-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
27 lines (27 loc) · 896 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"automerge": false,
"rebaseWhen": "conflicted",
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^Dockerfile$"],
"description": "Process Dockerfile(s)",
"matchStrings": [
"datasource=(?<datasource>[a-z-]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[a-z-0-9]+?))?\\s(?:ENV|ARG) .+?_TAG[ =]\"?(?<currentValue>.+?)\"?\\s"
]
},
{
"customType": "regex",
"fileMatch": ["^\\.github/workflows/.*\\.yml$"],
"description": "Process CrunchyData Postgres Images in GitHub Actions",
"matchStrings": [
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)\\n.*?\"(?<currentValue>.*)\"\\n"
]
}
],
"packageRules": []
}