forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
122 lines (122 loc) · 3.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":disableMajorUpdates"
],
"enabledManagers": ["gomod", "cargo"],
"reviewers": ["codingllama", "jentfoo", "rosstimothy", "zmb3"],
"branchConcurrentLimit": 10,
"prConcurrentLimit": 10,
"prHourlyLimit": 0,
"packageRules": [
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"],
"enabled": true,
"matchFileNames": ["go.mod"],
"groupName": "Teleport - Go"
},
{
"matchManagers": ["gomod"],
"enabled": false,
"matchFileNames": ["go.mod"],
"groupName": "Teleport - Go",
"matchPackageNames": [
"github.com/alecthomas/kingpin/v2",
"github.com/aquasecurity/libbpfgo",
"github.com/coreos/go-oidc",
"github.com/go-mysql-org/go-mysql",
"github.com/gogo/protobuf",
"github.com/gravitational/teleport/api",
"github.com/gravitational/ttlmap",
"github.com/julienschmidt/httprouter",
"github.com/keys-pub/go-libfido2",
"github.com/microsoft/go-mssqldb",
"github.com/redis/go-redis/v9",
"github.com/vulcand/predicate",
"go.mongodb.org/mongo-driver"
]
},
{
"matchManagers": ["gomod"],
"enabled": true,
"postUpdateOptions": ["gomodTidy"],
"matchFileNames": ["api/go.mod"],
"groupName": "Teleport API"
},
{
"matchManagers": ["cargo"],
"enabled": true,
"matchFileNames": ["Cargo.toml"],
"groupName": "Teleport - Rust"
},
{
"matchManagers": ["cargo"],
"enabled": true,
"matchFileNames": ["lib/srv/desktop/rdp/rdpclient/Cargo.toml"],
"groupName": "RDP Client"
},
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"],
"enabled": true,
"matchFileNames": ["assets/aws/go.mod"],
"groupName": "Assets - AWS ",
"excludePackageNames": [
"github.com/alecthomas/kingpin/v2"
]
},
{
"matchManagers": ["gomod"],
"enabled": false,
"matchFileNames": ["assets/aws/go.mod"],
"groupName": "Assets - AWS ",
"matchPackageNames": [
"github.com/alecthomas/kingpin/v2"
]
},
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"],
"enabled": true,
"matchFileNames": ["assets/backport/go.mod"],
"groupName": "Assets - Backport"
},
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"],
"enabled": true,
"matchFileNames": ["build.assets/tooling/go.mod"],
"groupName": "Build Assets - Tooling"
},
{
"matchManagers": ["gomod"],
"enabled": false,
"matchFileNames": ["build.assets/tooling/go.mod"],
"groupName": "Build Assets - Tooling",
"matchPackageNames": [
"github.com/alecthomas/kingpin/v2"
]
},
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"],
"enabled": true,
"matchFileNames": ["integrations/kube-agent-updater/go.mod"],
"groupName": "Integrations - Kube Updater"
}
],
"ignoreDeps": ["dockerfile"],
"ignorePaths": [
".drone.yml",
".github/actions",
".github/services",
".github/workflows",
"assets/loadtest",
"docker",
"examples",
"package.json",
"web"
]
}