From 993e7d0bb6f3422ef833a702b90e2a44909ec651 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Fri, 31 Oct 2025 09:35:48 -0500 Subject: [PATCH] fix: configure Renovate to ignore github-actions[bot] commits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds gitIgnoredAuthors to allow Renovate to auto-rebase PRs even after the renovate-dist-update workflow adds commits. Without this, Renovate refuses to auto-rebase because it sees commits from an unrecognized author. Also sets rebaseWhen to "conflicted" to prevent infinite rebase loops that can occur when gitIgnoredAuthors is combined with auto-rebasing. This fixes the warning on PRs like #301 where Renovate says it "does not recognize the last commit author". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/renovate.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 75e5065..d5eec44 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,4 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>jdx/renovate-config"] + "extends": ["github>jdx/renovate-config"], + "gitIgnoredAuthors": ["github-actions[bot]@users.noreply.github.com"], + "rebaseWhen": "conflicted" }