Skip to content

Commit

Permalink
Group dependabot updates per implementation (#160)
Browse files Browse the repository at this point in the history
This adds a `groups` definition for each implementation for dependabot
updates. Note that this uses `*`, which just groups the deps for a
single implementation into one PR. It seems overkill to divvy up each
implementation into granular groups. It makes more sense for this repo
to just have a single dependabot PR for each implementation.
  • Loading branch information
smaye81 authored Nov 1, 2023
1 parent eb5c7a0 commit 1530dbd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ updates:
timezone: UTC
time: "07:00"
open-pull-requests-limit: 50
groups:
baseline:
patterns:
- "*"
- package-ecosystem: "npm"
directory: "/impl/google-protobuf"
schedule:
Expand All @@ -23,6 +27,10 @@ updates:
timezone: UTC
time: "07:00"
open-pull-requests-limit: 50
groups:
google-protobuf:
patterns:
- "*"
- package-ecosystem: "npm"
directory: "/impl/protobuf-es"
schedule:
Expand All @@ -31,6 +39,10 @@ updates:
timezone: UTC
time: "07:00"
open-pull-requests-limit: 50
groups:
protobuf-es:
patterns:
- "*"
- package-ecosystem: "npm"
directory: "/impl/protobuf.js"
schedule:
Expand All @@ -39,6 +51,10 @@ updates:
timezone: UTC
time: "07:00"
open-pull-requests-limit: 50
groups:
protobuf-js:
patterns:
- "*"
- package-ecosystem: "npm"
directory: "/impl/ts-proto"
schedule:
Expand All @@ -47,6 +63,10 @@ updates:
timezone: UTC
time: "07:00"
open-pull-requests-limit: 50
groups:
ts-proto:
patterns:
- "*"
- package-ecosystem: "npm"
directory: "/impl/protobuf-ts"
schedule:
Expand All @@ -55,3 +75,7 @@ updates:
timezone: UTC
time: "07:00"
open-pull-requests-limit: 50
groups:
protobuf-ts:
patterns:
- "*"

0 comments on commit 1530dbd

Please sign in to comment.