From 4c4bb2897ebef1aaeada82b8c48a7618486a08cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20V=C3=A1squez?= Date: Thu, 25 Jun 2026 14:01:26 -0600 Subject: [PATCH] Exclude Rails from the Dependabot minor/patch group A Rails minor bump (e.g. 8.0 -> 8.1) is a deliberate framework upgrade, not routine churn. PR #115 showed the group sweeping Rails 8.1 in with patch-level gems. Exclude 'rails' from the group so framework bumps arrive as their own reviewable PR while everything else still batches. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d7497c8..f80123a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,11 @@ updates: # Bundle all minor + patch gem updates into a single weekly PR. # Major bumps still open as individual PRs for deliberate review. ruby-minor-and-patch: + # Keep the Rails framework out of the routine batch: a Rails minor + # (e.g. 8.0 -> 8.1) is a deliberate upgrade, not routine churn, and + # should arrive as its own PR. + exclude-patterns: + - "rails" update-types: - minor - patch