diff options
author | Shlee <github@shl.ee> | 2020-06-06 23:41:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-06 17:41:31 +0200 |
commit | ef15aa43c754f59a7acba18eb284055d4b84d9ae (patch) | |
tree | 251ff428b3561767a1a79b824d99b66bac1752a7 | |
parent | 795f61d66b804ec718b985d66a8ec56d519045b6 (diff) |
Update dependabot.yml (Fix #13939) (#13990)
* Update dependabot.yml * Update dependabot.yml
-rw-r--r-- | .github/dependabot.yml | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7051d5499..6b47350a4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,18 +1,22 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + version: 2 updates: + - package-ecosystem: npm + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 99 + allow: + - dependency-type: all -- package-ecosystem: npm - directory: "/" - schedule: - interval: weekly - open-pull-requests-limit: 99 - allow: - - dependency-type: all - -- package-ecosystem: bundler - directory: "/" - schedule: - interval: weekly - open-pull-requests-limit: 99 - allow: - - dependency-type: all + - package-ecosystem: bundler + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 99 + allow: + - dependency-type: all |