From a415f44fd178c14bacae2812c68e6779772d06e8 Mon Sep 17 00:00:00 2001 From: Shlee Date: Fri, 5 Jun 2020 21:24:01 +0800 Subject: Update Dependabot config (#13939) * Delete config.yml * Create dependabot.yml --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml (limited to '.github') diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..7051d5499 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + +- 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 -- cgit From ef15aa43c754f59a7acba18eb284055d4b84d9ae Mon Sep 17 00:00:00 2001 From: Shlee Date: Sat, 6 Jun 2020 23:41:31 +0800 Subject: Update dependabot.yml (Fix #13939) (#13990) * Update dependabot.yml * Update dependabot.yml --- .github/dependabot.yml | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) (limited to '.github') 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 -- cgit