Browse Source

dependabot: group together common deps (#950)

Group together deps that are often updated together.

- https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
Wade Simmons 1 year ago
parent
commit
5671c6607c
1 changed files with 11 additions and 0 deletions
  1. 11 0
      .github/dependabot.yml

+ 11 - 0
.github/dependabot.yml

@@ -9,3 +9,14 @@ updates:
     directory: "/"
     directory: "/"
     schedule:
     schedule:
       interval: "weekly"
       interval: "weekly"
+    groups:
+      golang-x-dependencies:
+        patterns:
+          - "golang.org/x/*"
+      zx2c4-dependencies:
+        patterns:
+          - "golang.zx2c4.com/*"
+      protobuf-dependencies:
+        patterns:
+          - "github.com/golang/protobuf"
+          - "google.golang.org/protobuf"