From a0a9a504b4cf0ff6d9890bac6ec9d93bb696d530 Mon Sep 17 00:00:00 2001 From: maurges Date: Tue, 2 Jun 2026 16:37:50 +0200 Subject: [PATCH] Reduce dependabot noise Signed-off-by: maurges --- .github/dependabot.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 221d178..944add3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,17 +2,21 @@ version: 2 updates: - package-ecosystem: "cargo" directory: "/" + # Disable version updates (does not affect security updates according to + # the docs) + open-pull-requests-limit: 0 schedule: - interval: "weekly" - open-pull-requests-limit: 10 - groups: - cargo-minor-and-patch: - update-types: - - "minor" - - "patch" + interval: "yearly" # required field, so set it to whatever - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" - open-pull-requests-limit: 5 + interval: "quarterly" + open-pull-requests-limit: 1 + # Group all updates into one request + groups: + all-updates: + update-types: + - "major" + - "minor" + - "patch"