From c96239a42ba7ba57ddbae9cfb962b67acf847052 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Sat, 20 Jan 2024 09:32:48 -0700 Subject: [PATCH] Dependent needs to --squash, not --merge. --- .github/workflows/examples-autoapprove-and-automerge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/examples-autoapprove-and-automerge.yml b/.github/workflows/examples-autoapprove-and-automerge.yml index 9f3617f01f961..39e6e14b89f69 100644 --- a/.github/workflows/examples-autoapprove-and-automerge.yml +++ b/.github/workflows/examples-autoapprove-and-automerge.yml @@ -33,7 +33,7 @@ jobs: with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs - 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}}