From ded04b33f718fbd69ca0f5e91a6b2fac4060883a Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Thu, 19 May 2022 16:35:29 -0500 Subject: [PATCH] Update dependabot configuration --- .github/dependabot.yml | 44 ++++++++++++++++++++++++++++++------------ 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ee5c16a12b..17dfcb14b8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,27 +1,47 @@ version: 2 registries: - - fortawesome: - type: npm-registry - url: https://npm.fontawesome.com/ - token: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} + github-jonaharagon: + type: git + url: https://github.com + username: x-access-token + password: ${{secrets.TOKEN_GITHUB}} updates: - + # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" - - - package-ecosystem: "bundler" # See documentation for possible values - directory: "/" # Location of package manifests + assignees: + - "jonaharagon" + reviewers: + - "jonaharagon" + labels: + - "fix:github_actions" + # Maintain dependencies for Git submodules + - package-ecosystem: "gitsubmodule" + directory: "/" + registries: + - github-jonaharagon schedule: interval: "daily" - - - package-ecosystem: "npm" + assignees: + - "jonaharagon" + reviewers: + - "jonaharagon" + labels: + - "fix:submodules" + # Maintain dependencies for pipenv + - package-ecosystem: "pip" directory: "/" registries: - - fortawesome + - github-jonaharagon schedule: interval: "daily" + assignees: + - "jonaharagon" + reviewers: + - "jonaharagon" + labels: + - "fix:python"