Skip to content

Commit 49464cd

Browse files
authored
feat(ci): add dependabot.yml groups (#533)
this commit introduces a collection of groups to our dependabot configuration, to avoid excessive numbers of pull requests when families of aggregate crates like `futures-*`, `tonic-*`, etc. release new versions. this follows the same convention as in other repositories such as e.g. the proxy, which includes these groups as well. Signed-off-by: katelyn martin <kate@buoyant.io>
1 parent 3377012 commit 49464cd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@ updates:
44
directory: /
55
schedule:
66
interval: daily
7+
groups:
8+
futures:
9+
patterns:
10+
- "futures*"
11+
grpc:
12+
patterns:
13+
- "prost*"
14+
- "tonic*"
15+
hyper:
16+
patterns:
17+
- "hyper*"
18+
pin-project:
19+
patterns:
20+
- "pin-project*"
21+
rand:
22+
patterns:
23+
- "rand"
24+
- "rand_*"
25+
regex:
26+
patterns:
27+
- "regex"
28+
- "regex-*"
29+
tracing:
30+
patterns:
31+
- "tracing*"
732

833
- package-ecosystem: gomod
934
directory: /

0 commit comments

Comments
 (0)