From 9c17f2f7a7022730f6a9a9ee3bce907e7cda3bc9 Mon Sep 17 00:00:00 2001 From: Albert Villanova del Moral <8515462+albertvillanova@users.noreply.github.com> Date: Fri, 28 Aug 2026 18:19:35 +0200 Subject: [PATCH] Stop dependabot from opening ruff pre-commit bumps --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 953199d01f4..18b68073555 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -23,10 +23,14 @@ updates: local-actions: patterns: ["*"] - # Not grouped, so that a ruff bump, which reformats code, stays separate from a doc-builder bump + # Not grouped, so that each hook bump stays reviewable on its own - package-ecosystem: "pre-commit" directory: "/" schedule: interval: "weekly" cooldown: default-days: 7 + ignore: + # Ruff is frozen on purpose: a bump reformats code and rewrites source through `--fix`, without + # reporting anything new under our own rule selection. Bump it by hand when there is a reason. + - dependency-name: "https://github.com/astral-sh/ruff-pre-commit"