-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.json
141 lines (141 loc) · 3.99 KB
/
go.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"matchDatasources": [
"go"
],
"labels": [
"dependencies",
"golang"
],
"postUpdateOptions": [
"gomodTidy"
]
},
{
"groupName": "Overmind Dependencies",
"groupSlug": "overmindtech-go",
"matchDatasources": [
"go"
],
"matchSourceUrlPrefixes": [
"https://github.com/overmindtech/"
],
"schedule": [
"at any time"
],
"automerge": true,
"platformAutomerge": true,
"platformCommit": true
},
{
"groupName": "NATS modules",
"groupSlug": "nats-go",
"matchDatasources": [
"go"
],
"matchSourceUrlPrefixes": [
"https://github.com/nats-io/"
]
},
{
"groupName": "AWS SDK",
"groupSlug": "aws-sdk-go",
"matchDatasources": [
"go"
],
"matchPackagePrefixes": [
"github.com/aws/aws-sdk-go-v2"
]
},
{
"groupName": "River Queue",
"groupSlug": "riverqueue",
"automerge": false,
"prBodyNotes": "## ⚠️ Warning\n\nThese modules contain database migrations that need to be added manually to our atlas migrations. Check the contents of https://github.com/riverqueue/river/tree/master/rivermigrate/migration before merging this update.",
"matchDatasources": [
"go"
],
"matchPackagePrefixes": [
"github.com/riverqueue"
]
},
{
"groupName": "Ginkgo test utils",
"groupSlug": "gink-go",
"matchDatasources": [
"go"
],
"matchSourceUrlPrefixes": [
"https://github.com/onsi/"
],
"automerge": true
},
{
"groupName": "Observability modules",
"groupSlug": "opentelemetry-go",
"automerge": false,
"labels": [
"observability"
],
"prBodyNotes": "## ⚠️ Warning\n\nThese modules are almost certainly going to break everything. They do every time they update. If you update even one repo's OTEL modules, go will then pull in new versions due to [MVS](https://research.swtch.com/vgo-mvs) which will cause your repo to break. All [otel pull requests](https://github.com/pulls?q=is%3Aopen+is%3Apr+user%3Aovermindtech+archived%3Afalse+label%3Aobservability+) need to be merged basically at the same time, and after all of the modules have been updated to be compatible with each other.",
"matchDatasources": [
"go"
],
"matchPackagePrefixes": [
"connectrpc.com/otelconnect",
"github.com/getsentry/",
"github.com/go-logr/",
"github.com/uptrace/opentelemetry-go-extra/",
"go.opentelemetry.io/",
"gorm.io/plugin/opentelemetry"
]
},
{
"groupName": "kubernetes packages",
"groupSlug": "kubernetes-go",
"matchDatasources": [
"go"
],
"matchPackagePrefixes": [
"k8s.io/api",
"k8s.io/apiextensions-apiserver",
"k8s.io/apimachinery",
"k8s.io/apiserver",
"k8s.io/cli-runtime",
"k8s.io/client-go",
"k8s.io/cloud-provider",
"k8s.io/cluster-bootstrap",
"k8s.io/code-generator",
"k8s.io/component-base",
"k8s.io/controller-manager",
"k8s.io/cri-api",
"k8s.io/csi-translation-lib",
"k8s.io/kube-aggregator",
"k8s.io/kube-controller-manager",
"k8s.io/kube-proxy",
"k8s.io/kube-scheduler",
"k8s.io/kubectl",
"k8s.io/kubelet",
"k8s.io/legacy-cloud-providers",
"k8s.io/metrics",
"k8s.io/mount-utils",
"k8s.io/pod-security-admission",
"k8s.io/sample-apiserver",
"k8s.io/sample-cli-plugin",
"k8s.io/sample-controller",
"sigs.k8s.io/controller-runtime"
]
},
{
"matchDatasources": [
"go"
],
"matchPackagePrefixes": [
"k8s.io/client-go"
],
"allowedVersions": "< v1.0.0"
}
]
}