workflow: do not use squashed merging

This commit is contained in:
Julian Mutter 2025-03-23 18:45:12 +01:00
parent 9cfe01d3e4
commit e2fa915bdd

View File

@ -34,8 +34,7 @@ jobs:
if [ $commits_ahead -ne 0 ]
then
git fetch origin
git merge -X theirs --squash origin/main
git commit -m "Merge main branch squashed $(date -I)"
git merge -m "Merge main branch $(date -I)" -X theirs origin/main
else
echo "Merge not necessary"
fi