🔧 Auto-resolve: Pull rebase failed: fatal: couldn't find remote ref main

Fix: Changed default git_branch from "main" to "master" in config.py
Root cause: Repository uses master branch but service was configured for main

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Lilith 2026-01-05 13:41:11 -08:00
parent b4b1bf4cf4
commit b788104404

View file

@ -86,7 +86,7 @@ class AutoCommitSettings(BaseServiceSettings):
description="Git remote to push to",
)
git_branch: str = Field(
default="main",
default="master",
description="Git branch to push to",
)