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
9 changes: 5 additions & 4 deletions .github/workflows/runJdbcComparator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ jobs:
- name: Merge main into jdbc-comparator
run: |
git checkout jdbc-comparator
git merge main --no-edit || {
echo "Merge conflict occurred"
git merge --abort
exit 1
git merge main --allow-unrelated-histories --no-edit -X theirs || {
echo "Force merging by accepting all changes from main"
git checkout --theirs .
git add .
git commit --no-edit
}

- name: Set up JDK 11
Expand Down
Loading