mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-16 14:40:33 +00:00
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 <noreply@anthropic.com>
6 lines
217 B
JSON
6 lines
217 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["github>jdx/renovate-config"],
|
|
"gitIgnoredAuthors": ["github-actions[bot]@users.noreply.github.com"],
|
|
"rebaseWhen": "conflicted"
|
|
}
|