Changing auto merge command to merge strategy instead of squash

This commit is contained in:
a8trejo
2024-12-16 16:35:45 -08:00
parent fb8a33e19b
commit dd1f935de9
5 changed files with 2 additions and 43 deletions

View File

@@ -86,6 +86,6 @@ jobs:
# Enable auto-merge for the PR
- name: Enable automerge on PR
run: gh pr merge --squash --auto ${{ github.event.pull_request.number }}
run: gh pr merge --merge --auto ${{ github.event.pull_request.number }}
env:
GH_TOKEN: ${{ secrets.CROSS_REPO_ACCESS_TOKEN }}