From c58b34ccfb8295ab79e8a6ee64aa7208b0e17084 Mon Sep 17 00:00:00 2001 From: Niall Byrne Date: Tue, 22 Jun 2021 12:24:15 -0400 Subject: [PATCH] ci(GITHUB): add dependabot configuration to template --- {{cookiecutter.project_slug}}/.github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 {{cookiecutter.project_slug}}/.github/dependabot.yml diff --git a/{{cookiecutter.project_slug}}/.github/dependabot.yml b/{{cookiecutter.project_slug}}/.github/dependabot.yml new file mode 100644 index 00000000..4f6b28b6 --- /dev/null +++ b/{{cookiecutter.project_slug}}/.github/dependabot.yml @@ -0,0 +1,11 @@ +--- +version: 2 +updates: + - package-ecosystem: "pip" + target-branch: "master" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + reviewers: + - "{{ cookiecutter.github_handle }}"