From 18a1b673f9961fc73553bfb81b23914d11ff67da Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 11 Aug 2024 12:07:37 -0400 Subject: [PATCH] CI: Run Dependabot once a month, but increase the "open PR limit" (#136) --- .github/dependabot.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707c..7c1e3b9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,10 @@ -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "github-actions" - directory: "/" # Location of package manifests + directory: "/" schedule: - interval: "weekly" + interval: "monthly" + open-pull-requests-limit: 100 + labels: + - "dependencies" + - "github-actions"