From 2ee54e09fe7fa56699f0185c9b05c8ca24ec923f Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Tue, 21 Mar 2023 11:33:24 -0500 Subject: [PATCH] Create Dependabot configuration --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..662b796 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,32 @@ +version: 2 + +registries: + + github-privacyguides: + type: git + url: https://github.com + username: x-access-token + password: ${{secrets.REPO_PAT}} + +updates: + + # Maintain submodules + - package-ecosystem: "gitsubmodule" + directory: "/" + registries: + - github-privacyguides + schedule: + interval: "daily" + + # Maintain dependencies for pipenv + - package-ecosystem: "pip" + directory: "/" + insecure-external-code-execution: allow + registries: + - github-privacyguides + schedule: + interval: "daily" + assignees: + - "jonaharagon" + reviewers: + - "jonaharagon"