From 0d24a13099579481a1aad8d906fca6eb795a0f05 Mon Sep 17 00:00:00 2001 From: Alexander Dmitriev Date: Sun, 29 Mar 2026 14:08:21 +0400 Subject: [PATCH] feat(automation): update pull request merge strategy to use squash --- .github/workflows/bot-automation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bot-automation.yml b/.github/workflows/bot-automation.yml index 48def6b..1717007 100644 --- a/.github/workflows/bot-automation.yml +++ b/.github/workflows/bot-automation.yml @@ -16,7 +16,7 @@ jobs: with: github-token: ${{ secrets.APPROVE_PAT }} - 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 }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}