From 6f78da955849187668208a3518609f8620ae311a Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Thu, 6 Jul 2023 08:19:18 -0600 Subject: [PATCH] Match dependabot definition to GitHub docs --- .github/dependabot.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f8c914b3aa..25de15f3b1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,12 +1,23 @@ +# Per https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: + + # Maintain dependencies for maven - package-ecosystem: "maven" - directory: "/" # Location of package manifests + directory: "/" schedule: interval: "weekly" + open-pull-requests-limit: 10 + target-branch: "master" + reviewers: + - "MarkEWaite" + labels: + - "dependencies" + + # Maintain dependencies for GitHub actions - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" labels: - - skip-changelog + - "skip-changelog"