From 0413f3b1aed10bc4d367678d38a695e81c7c09f5 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Wed, 3 Apr 2024 11:00:28 -0400 Subject: [PATCH] Only run Dependabot once per month, but increase the PR limit (#115) --- .github/dependabot.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ed8f4a4..134d3f5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,9 +1,10 @@ version: 2 - updates: - - # Keep dependencies for GitHub Actions up-to-date - - package-ecosystem: 'github-actions' - directory: '/' + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: 'daily' + interval: "monthly" + open-pull-requests-limit: 99 + labels: + - "dependencies" + - "github-actions"