From 7cd7f37826026bacb175567d01509274d0a0682b Mon Sep 17 00:00:00 2001 From: Jasmin Eilers <4738799+jaeilers@users.noreply.github.com> Date: Sat, 30 May 2026 20:39:23 +0200 Subject: [PATCH] feat: Use squash for merge trategy 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 0d609e3..ae34014 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,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 }}