forked from mbta/dotcom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json
38 lines (38 loc) · 1.01 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"group:definitelyTyped",
"group:postcss"
],
"packageRules": [
{
"description": "this dep is handled by customManagers",
"matchPackageNames": ["elixir"],
"matchManagers": ["asdf"],
"enabled": false
},
{
"description": "this dep is handled by customManagers",
"matchPackageNames": ["hexpm/elixir"],
"matchManagers": ["dockerfile"],
"enabled": false
}
],
"customManagers": [
{
"fileMatch": ".tool-versions",
"matchStrings": ["elixir (?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "elixir",
"datasourceTemplate": "hexpm-bob"
},
{
"fileMatch": ".tool-versions",
"matchStrings": ["-otp-(?<currentValue>\\d+)"],
"extractVersionTemplate": "^(?<version>\\d+)",
"depNameTemplate": "erlang/otp",
"datasourceTemplate": "github-releases",
"versioningTemplate": "loose"
}
]
}