From 54a712adfc3f4bb6ed940818be6a9930557e002a Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 30 Jan 2026 02:48:46 +0100 Subject: [PATCH] Ignore release.yml in Renovate config (#17746) ## Summary `release.yml` is managed by dist, so Renovate creates a lot of chaff/noise/unnecessary dirty changes when trying to bump it. See #17302 for example. ## Test Plan NFC. --------- Signed-off-by: William Woodruff --- .github/renovate.json5 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7fd426822..93b6092b3 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -39,6 +39,13 @@ matchManagers: ["cargo"], enabled: false, }, + { + // Disable updates of actions used by `.github/workflows/release.yml`; + // these action pins are managed by dist-workspace.toml + matchFileNames: [".github/workflows/release.yml"], + matchManagers: ["github-actions"], + enabled: false, + }, { // Create dedicated branches to update references to dependencies in the documentation. matchFileNames: ["docs/**/*.md"],