Skip to content

Commit 764fa68

Browse files
stmcginnisaojea
authored andcommitted
dependabot: Add labels and correct grouping
This configures dependabot updates to automatically add ok-to-test labels and corrects the location for grouping Go dependency updates. In addition to the k8s.io grouping it also adds an AWS grouping since those are also almost always intended to be taken as a set. Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
1 parent 453b11f commit 764fa68

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,30 @@ updates:
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "weekly"
12+
groups:
13+
k8s:
14+
patterns:
15+
- "*k8s.io*"
16+
aws:
17+
patterns:
18+
- "github.com/aws/*"
19+
labels:
20+
- "area/dependency"
21+
- "ok-to-test"
1222

1323
- package-ecosystem: docker
1424
directory: /
1525
schedule:
1626
interval: weekly
27+
labels:
28+
- "area/dependency"
29+
- "ok-to-test"
1730

1831
- package-ecosystem: "github-actions"
1932
directory: "/"
2033
schedule:
2134
# Check for updates to GitHub Actions every week
2235
interval: "weekly"
23-
groups:
24-
k8s:
25-
patterns:
26-
- "k8s.io/*"
27-
- "sigs.k8s.io/*"
36+
labels:
37+
- "area/dependency"
38+
- "ok-to-test"

0 commit comments

Comments
 (0)