-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json
42 lines (42 loc) · 1.03 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
39
40
41
42
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabledManagers": [
"regex"
],
"recreateWhen": "always",
"regexManagers": [
{
"datasourceTemplate": "gitlab-tags",
"depNameTemplate": "xdg/xdg-utils",
"registryUrlTemplate": "https://gitlab.freedesktop.org/api/v4/projects/xdg%2fxdg-utils/repository/tags?per_page=100",
"extractVersionTemplate": "^v(?<version>\\d+\\.\\d+(\\.\\d+)??)$",
"fileMatch": [
"^tools/xdg-utils/manifest.yaml$"
],
"matchStrings": [
"version: \"?(?<currentValue>.*?)\"?\\n"
]
},
{
"datasourceTemplate": "github-tags",
"depNameTemplate": "moby/moby",
"extractVersionTemplate": "^v(?<version>.+?)$",
"fileMatch": [
"^tools/docker/manifest.yaml$"
],
"matchStrings": [
"version: \"?(?<currentValue>.*?)\"?\\n"
]
}
],
"packageRules": [
{
"matchPackageNames":[
"moby/moby"
],
"schedule": [
"on Tuesday"
]
}
]
}