From e96375c5c04c5e3cfd711d22350c32233ead9e48 Mon Sep 17 00:00:00 2001 From: Doguhan Uluca Date: Mon, 18 May 2026 09:38:59 -0400 Subject: [PATCH] Drop --admin on auto-merge now that stale required check is gone The dead 'ci/circleci: build' was removed from master branch protection, so the normal merge path works without admin bypass. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96bf144..0c4373b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,4 +89,4 @@ jobs: - name: Auto-merge PR env: GH_TOKEN: ${{ secrets.AUTOMERGE_PAT }} - run: gh pr merge ${{ github.event.pull_request.number }} --squash --delete-branch --admin -R ${{ github.repository }} + run: gh pr merge ${{ github.event.pull_request.number }} --squash --delete-branch -R ${{ github.repository }}