From 7f7409550dfa1aed34f5d55d69ae1a488da892bf Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2020 11:16:10 +0200 Subject: [PATCH] Update Dependabot config file (#431) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update Dependabot config file * Format dependabot.yml with prettier Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Claudio Jolowicz Co-authored-by: Thiago C. D'Ávila --- .dependabot/config.yml | 20 -------------------- .github/dependabot.yml | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 20 deletions(-) delete mode 100644 .dependabot/config.yml create mode 100644 .github/dependabot.yml diff --git a/.dependabot/config.yml b/.dependabot/config.yml deleted file mode 100644 index e540f5cfe..000000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 1 -update_configs: - - package_manager: "python" - directory: "/docs" - update_schedule: "daily" - allowed_updates: - - match: - update_type: "all" - - package_manager: "python" - directory: "/.github/workflows" - update_schedule: "daily" - allowed_updates: - - match: - update_type: "all" - - package_manager: "github_actions" - directory: "/" - update_schedule: "daily" - allowed_updates: - - match: - update_type: "all" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..56a022ca2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +version: 2 +updates: + - package-ecosystem: pip + directory: "/docs" + schedule: + interval: daily + time: "04:00" + timezone: "Europe/Berlin" + labels: + - "cookiecutter" + - "dependencies" + - "python" + open-pull-requests-limit: 99 + - package-ecosystem: pip + directory: "/.github/workflows" + schedule: + interval: daily + time: "04:00" + timezone: "Europe/Berlin" + labels: + - "cookiecutter" + - "dependencies" + - "python" + open-pull-requests-limit: 99 + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + time: "04:00" + timezone: "Europe/Berlin" + labels: + - "cookiecutter" + - "dependencies" + - "github_actions" + open-pull-requests-limit: 99