From db1b3ddaeaa65dcc8105d81cd0910370850e0b62 Mon Sep 17 00:00:00 2001 From: Pablo Garcia Miranda Date: Tue, 12 Aug 2025 09:13:06 +0200 Subject: [PATCH] Remove self-approval step from release workflow as it's not allowed in gh --- .github/workflows/release.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a7663a20..73ccc503 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -99,8 +99,5 @@ jobs: PR_NUMBER=$(echo "$PR_URL" | sed 's/.*\/pull\///') echo "Created PR #$PR_NUMBER: $PR_URL" - # Auto-approve the PR - gh pr review "$PR_NUMBER" --approve --body "Auto-approving automated release PR" - # Enable auto-merge and merge the PR gh pr merge "$PR_NUMBER" --auto --squash --delete-branch