forked from diggsweden/devbase-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
79 lines (79 loc) · 2.8 KB
/
renovate.json
File metadata and controls
79 lines (79 loc) · 2.8 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>diggsweden/.github//renovate-base.json"
],
"mise": {
"managerFilePatterns": [
"/(^|/)dot/\\.config/mise/config\\.toml$/",
"/(^|/)\\.mise\\.toml$/"
]
},
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/(^|/)dot/\\.config/devbase/packages\\.yaml$/"
],
"matchStrings": [
"^\\s*[a-zA-Z0-9_.-]+:\\s+\\{[^}]*?\\bversion\\s*:\\s+\"?(?<currentValue>[^\",}]+)\"?[^}]*?\\}\\s+#\\s+renovate:\\s+datasource=(?<datasource>\\S+)\\s+depName=(?<depName>\\S+?)(?:\\s+packageName=(?<packageName>\\S+?))?(?:\\s+extractVersion=(?<extractVersion>\\S+?))?\\s*$"
]
},
{
"customType": "regex",
"managerFilePatterns": [
"/(^|/)dot/\\.config/devbase/vscode-extensions\\.yaml$/"
],
"matchStrings": [
"^(?<depName>[a-zA-Z0-9_.-]+\\.[a-zA-Z0-9_.-]+):\\s+(?<currentValue>\\S+)\\s+#\\s+renovate:\\s+datasource=(?<datasource>\\S+?)(?:\\s+packageName=(?<packageName>\\S+?))?(?:\\s+extractVersion=(?<extractVersion>\\S+?))?\\s*$"
]
},
{
"customType": "regex",
"managerFilePatterns": [
"/tests/setup-bats-libs\\.sh$/"
],
"description": "Update BATS helper library versions (bats-core)",
"matchStrings": [
"\\[\"(?<depName>bats-support|bats-assert|bats-file)\"\\]=\"(?<currentValue>v[0-9.]+)\""
],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "bats-core/{{{depName}}}",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": [
"/tests/setup-bats-libs\\.sh$/"
],
"description": "Update bats-mock version",
"matchStrings": [
"\\[\"(?<depName>bats-mock)\"\\]=\"(?<currentValue>v[0-9.]+)\""
],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "jasonkarns/{{{depName}}}",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": [
"/dot/\\.config/fish/functions/devbase-citrix\\.fish$/"
],
"description": "Update Citrix Workspace App version (manual update required)",
"matchStrings": [
"#\\s*renovate:\\s*datasource=custom\\.citrix\\s+depName=(?<depName>\\S+)\\nset\\s+-g\\s+__citrix_version\\s+\"(?<currentValue>[0-9.]+)\""
],
"datasourceTemplate": "custom.citrix",
"versioningTemplate": "loose"
}
],
"customDatasources": {
"citrix": {
"defaultRegistryUrlTemplate": "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html",
"format": "html",
"transformTemplates": [
"{\"releases\": [{\"version\": $match(body, /icaclient_([0-9.]+)_amd64\\.deb/).groups[0]}]}"
]
}
}
}