From 6bb03279ae5448505be618533446ea2f8b042f25 Mon Sep 17 00:00:00 2001 From: Marcell Toth Date: Fri, 16 Oct 2020 12:03:13 +0200 Subject: [PATCH] fix: workaround dependabot limitation by using two of them (#21) I'm not sure this works. See the problem here: https://github.com/dependabot/dependabot-core/issues/1865 Maybe using Github's dependabot and the old one simultaneously does the trick. Let's see. --- .dependabot/config.yml | 8 ++++++++ .github/dependabot.yml | 6 ------ 2 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 .dependabot/config.yml diff --git a/.dependabot/config.yml b/.dependabot/config.yml new file mode 100644 index 0000000..04d5e87 --- /dev/null +++ b/.dependabot/config.yml @@ -0,0 +1,8 @@ +version: 1 +update_configs: + - package_manager: "javascript" + directory: "/" + update_schedule: "live" + allowed_updates: + - match: + dependency_name: "@stoplight/elements-web-components" diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d59b11a..b29d1a9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,9 +9,3 @@ updates: schedule: interval: "monthly" versioning-strategy: "increase-if-necessary" - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" - allow: - - dependency-name: "@stoplight/elements-web-components"