Skip to content

Commit

Permalink
chore: Only ask dependabot to care about direct dependencies
Browse files Browse the repository at this point in the history
There is some confusion in the github docs about what the default is
for gomod given all the direct and indirect deps are explicitly
defined. This change attempts to only include the direct deps and
let the indirect deps be resolved by their projects.

Signed-off-by: crozzy <joseph.crosland@gmail.com>
  • Loading branch information
crozzy committed May 15, 2023
1 parent 6211920 commit 471da4e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ updates:
interval: "weekly"
- package-ecosystem: "gomod"
directory: "/"
allow:
- dependency-type: "direct"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
directory: "/config"
allow:
- dependency-type: "direct"
schedule:
interval: "weekly"

0 comments on commit 471da4e

Please sign in to comment.