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
6 changes: 2 additions & 4 deletions .github/workflows/sync-from-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:

- name: Sync main with public/main
run: |
git checkout main
git reset --hard origin/main
git checkout -B main origin/main

# Check if public/main is already merged
if git merge-base --is-ancestor public/main HEAD; then
Expand Down Expand Up @@ -137,8 +136,7 @@ jobs:

- name: Sync preview with public/preview
run: |
git checkout preview
git reset --hard origin/preview
git checkout -B preview origin/preview

# Check if public/preview is already merged
if git merge-base --is-ancestor public/preview HEAD; then
Expand Down
Loading