From 2c8d5791ad1e0efbdea5a3182c64492e3bfcbfdc Mon Sep 17 00:00:00 2001 From: Bruce Bolt Date: Fri, 22 Nov 2024 09:22:18 +0000 Subject: [PATCH] Increase dependabot PR limit for Ruby gems Dependabot has a default limit of 5 for the number of pull requests it will open on a repo [1]. We have missed some updates this week, since Dependabot has been limited to the number of PRs it can open. Therefore increasing the limit to 20, as we are unlikely to exceed this. 1: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/troubleshooting-dependabot-errors#dependabot-cannot-open-any-more-pull-requests --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e97fb4d1c..861a4082c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,7 @@ version: 2 updates: - package-ecosystem: bundler directory: / + open-pull-requests-limit: 20 schedule: interval: daily