diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2020-10-07 02:16:30 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 19:16:30 +0200 |
commit | da10c5c707c4b886ef151b55080562356b1f417e (patch) | |
tree | a8ac7b4e5506ed51955f51c2230cc6c2696409aa | |
parent | 8e6abbc4b9440e1b9b5ef6a0363e09e314473112 (diff) |
Exclude dependency updates other than direct dependencies (#14944)
-rw-r--r-- | .github/dependabot.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6b47350a4..c4cd48878 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,7 +11,7 @@ updates: interval: weekly open-pull-requests-limit: 99 allow: - - dependency-type: all + - dependency-type: direct - package-ecosystem: bundler directory: "/" @@ -19,4 +19,4 @@ updates: interval: weekly open-pull-requests-limit: 99 allow: - - dependency-type: all + - dependency-type: direct |