From 994e8c3751b032eb8290685af3749035cf4a777d Mon Sep 17 00:00:00 2001 From: Jasmin <4738799+jaeilers@users.noreply.github.com> Date: Mon, 25 May 2026 09:14:13 +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 8f0a40a..ed23b6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,12 +46,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 }}