From 03e07c42d5582f0e1f8e49922c460c2c4636a3d4 Mon Sep 17 00:00:00 2001 From: almondsun Date: Fri, 10 Jul 2026 21:10:20 -0500 Subject: [PATCH] Limit automated dependency updates --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f8b085c..27233ff 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,9 @@ updates: schedule: interval: weekly open-pull-requests-limit: 5 + ignore: + - dependency-name: "*" + update-types: [version-update:semver-major] groups: frontend-minor-patch: update-types: [minor, patch] @@ -13,6 +16,9 @@ updates: schedule: interval: weekly open-pull-requests-limit: 5 + ignore: + - dependency-name: "*" + update-types: [version-update:semver-major] groups: rust-minor-patch: update-types: [minor, patch]