Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/sync-patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ jobs:

# Check if all conflicts are resolved
if [ -z "$(git diff --name-only --diff-filter=U)" ]; then
# If every conflict was auto-resolved to main's version, the index
# may now be clean (nothing to sync). Same guard as the no-conflict path.
if git diff --cached --quiet; then
echo "No changes to sync - auto-resolution kept main's version for everything."
exit 0
fi

git commit -m "chore: merge stable into main (release conflicts auto-resolved)"
git push origin "$SYNC_BRANCH"

Expand Down
Loading