From 645f455ba547273c94a36b63d858702c56415769 Mon Sep 17 00:00:00 2001 From: Jasmin <4738799+jaeilers@users.noreply.github.com> Date: Sat, 30 May 2026 20:47:06 +0200 Subject: [PATCH] feat: Use squash instead of merge in auto-merge --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed23b6d..0c0e382 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: pull-requests: write steps: - name: Enable auto merge - run: gh pr merge --auto --merge "$PR_URL" + run: gh pr merge --auto --squash "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}