From d64ffd74439d61e3a2398356d611f2fbeb0a904e Mon Sep 17 00:00:00 2001 From: Jasmin Eilers <4738799+jaeilers@users.noreply.github.com> Date: Mon, 25 May 2026 09:11:06 +0200 Subject: [PATCH] fix: Remove auto approve step --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 073cd6d..0d609e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,12 +38,9 @@ jobs: permissions: contents: write pull-requests: write - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - name: Approve PR - run: gh pr review --approve "$PR_URL" - - name: Enable auto merge run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}