From 4c666df3c99f1326c749e2f54a56b7a42c166dec Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Mon, 20 Jan 2025 15:40:02 +0100 Subject: [PATCH] chore: remove delete-branch option (#6514) Remove the --delete-branch option in the dependency automation workflow. Ref: https://github.com/cli/cli/pull/10074 --- .github/workflows/dependabot-automation.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependabot-automation.yaml b/.github/workflows/dependabot-automation.yaml index 821d8ebf..a7001450 100644 --- a/.github/workflows/dependabot-automation.yaml +++ b/.github/workflows/dependabot-automation.yaml @@ -24,6 +24,6 @@ jobs: uses: dependabot/fetch-metadata@v2 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - # This doesn't trigger an automated merge because we require at approvals + # This doesn't trigger an automated merge because we require approvals - name: Enable auto-merge - run: gh pr merge --auto --squash --delete-branch "${PR_URL}" + run: gh pr merge --auto --squash "${PR_URL}"