forked from chaspy/slack-ask-chatgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
35 lines (35 loc) · 1.02 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
{
"extends": ["config:recommended"],
"enabledManagers": ["custom.regex", "github-actions"],
"labels": ["r:{{depName}}", "r:{{depName}}/{{newVersion}}"],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^import_map.json$"],
"matchStrings": [
"\".+?\"\\s*:\\s*\"(?<depName>https://deno.land/.+?)@v?(?<currentValue>\\d+?\\.\\d+?\\.\\d+?).*?\""
],
"datasourceTemplate": "deno"
},
{
"customType": "regex",
"fileMatch": ["^\\.github/workflows/[^/]+\\.yml$"],
"matchStrings": ["deno-version: ['\"](?<currentValue>[\\d.]+)['\"]"],
"datasourceTemplate": "github-releases",
"depNameTemplate": "denoland/deno"
}
],
"packageRules": [
{
"matchManagers": ["custom.regex"],
"matchPackagePatterns": [".*"],
"matchUpdateTypes": ["major"]
},
{
"matchManagers": ["custom.regex"],
"matchPackagePatterns": [".*"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
}
]
}