From 40e920844b7a4c6534f2914270a45fda8e486ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Wed, 6 Sep 2023 12:03:21 +0200 Subject: [PATCH] Update gem dependencies once a month We originally set a daily interval because we hadn't updated our gem dependencies for a year. However, we usually wait a few days/weeks between the time a gem is released and the moment we update it, and there are gems releasing new versions every few days, so maintaining daily updates would become tedious quickly. So we're now doing it once a month. We're also increasing the limit of open pull requests so we don't need to worry about whether dependabot is opening pull requests for every dependency. --- .github/dependabot.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 29b293459..25c7963f4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,5 @@ updates: - package-ecosystem: bundler directory: "/" schedule: - interval: daily - time: "04:00" - timezone: Etc/UTC - open-pull-requests-limit: 25 + interval: monthly + open-pull-requests-limit: 50