-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrenovate.json
More file actions
26 lines (26 loc) · 842 Bytes
/
Copy pathrenovate.json
File metadata and controls
26 lines (26 loc) · 842 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>xballoy/renovate-config"],
"packageRules": [
{
"matchDepNames": ["reflect-metadata"],
"abandonmentThreshold": null
}
],
"customManagers": [
{
"customType": "regex",
"depNameTemplate": "node",
"managerFilePatterns": ["/^.github/(?:workflows|actions)/.+\\.ya?ml$/"],
"matchStrings": ["node-version: \"(?<currentValue>.*?)\""],
"datasourceTemplate": "node-version"
},
{
"customType": "regex",
"managerFilePatterns": ["/^.github/(?:workflows|actions)/.+\\.ya?ml$/"],
"matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)(?: versioning=(?<versioning>\\S+))?\\s+\\S+?: ?[\"']?(?<currentValue>[^\"'\\s]+)[\"']?"
]
}
]
}