From b1576c5c4e172c5576d2533bf3d8180d35dff8b8 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Wed, 16 Apr 2025 14:48:57 -0500 Subject: [PATCH] github: make dependabot updates weekly A not-insignificant amount of our PR traffic is from Dependabot, even with the grouped update feature (something like 20% of all PRs in total are from Dependabot, last I checked.) We don't really need daily updates, and with the the current crate dependency graph we practically get updates *every* day. Bump it to weekly instead to stem the tide a little. Signed-off-by: Austin Seipp --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d5c09c399..b47b65be3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ updates: - package-ecosystem: "cargo" directory: "/" schedule: - interval: "daily" + interval: "weekly" open-pull-requests-limit: 10 commit-message: prefix: "cargo:" @@ -14,7 +14,7 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: "weekly" open-pull-requests-limit: 10 commit-message: prefix: "github:"