From e8b66597ad3be1c100fc50185fb7c1d3917678f1 Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Tue, 18 Aug 2026 08:16:17 +0000 Subject: [PATCH] ci: squash-merge dependabot PRs Let dependabot auto-merge use squash instead of a merge commit --- .github/workflows/dependabot-auto-merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 04dd5622..d579b44c 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -17,7 +17,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Enable auto-merge if: steps.metadata.outputs.update-type != 'version-update:semver-major' - 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 }}