-
Notifications
You must be signed in to change notification settings - Fork 102
/
renovate.json
88 lines (88 loc) · 2.48 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
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
80
81
82
83
84
85
86
87
88
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>the-guild-org/shared-config:renovate", ":preserveSemverRanges"],
"prConcurrentLimit": 10,
"dependencyDashboardTitle": "Dependencies Dashboard",
"packageRules": [
{
"matchPackageNames": ["slonik", "slonik-utilities"],
"enabled": false
},
{
"groupName": "graphiql",
"matchPackageNames": ["@graphiql/react", "@graphiql/toolkit", "graphiql"]
},
{
"groupName": "gh-actions/artifact",
"matchPackageNames": ["actions/download-artifact", "actions/upload-artifact"]
},
{
"groupName": "graphql-armor",
"matchPackageNames": ["@escape.tech/graphql-armor-{/,}**"]
},
{
"groupName": "Yoga/Envelop",
"matchPackageNames": ["@envelop/{/,}**", "graphql-yoga{/,}**", "@graphql-yoga/{/,}**"]
},
{
"groupName": "radix",
"recreateWhen": "auto",
"matchPackageNames": ["@radix/{/,}**", "@radix-ui{/,}**"]
},
{
"groupName": "stripe",
"matchPackageNames": ["@stripe/{/,}**", "stripe{/,}**"]
},
{
"groupName": "urql",
"recreateWhen": "auto",
"matchPackageNames": ["@urql/{/,}**", "urql{/,}**"]
},
{
"groupName": "sentry",
"matchPackageNames": ["@sentry/{/,}**", "sentry{/,}**"]
},
{
"groupName": "trpc",
"matchPackageNames": ["@trpc/{/,}**", "trpc{/,}**"]
},
{
"groupName": "supertokens",
"matchPackageNames": [
"supertokens",
"supertokens-node",
"supertokens-react",
"supertokens-auth-react",
"registry.supertokens.io/supertokens/supertokens-postgresql"
]
},
{
"groupName": "apollo-router",
"matchSourceUrls": ["(^|/)Cargo\\.toml$"],
"packageFile": "Cargo.toml",
"rangeStrategy": "pin",
"prPriority": 7
}
],
"dockerfile": {
"enabled": true,
"fileMatch": [".*?\\.[dD]ockerfile"]
},
"customManagers": [
{
"customType": "regex",
"fileMatch": ["deployment/.*?\\.ts$"],
"matchStrings": ["image: (?:'|\")(?<depName>.*?):(?<currentValue>.*?)(?:'|\")"],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": ["deployment/.*?\\.ts$"],
"matchStrings": [
"helmChart\\((?:'|\")(?<registryUrl>.*?)(?:'|\"), (?:'|\")(?<depName>.*?)(?:'|\"), (?:'|\")(?<currentValue>.*?)(?:'|\")\\)"
],
"datasourceTemplate": "helm"
}
]
}