From 0690d2c1fd8af21ec2f543aa04ea432cf2d43954 Mon Sep 17 00:00:00 2001 From: Arash Date: Tue, 24 Mar 2026 11:19:45 +0100 Subject: [PATCH] Fix auto-merge command to include repository context in workflow --- .github/workflows/auto-merge-bot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-merge-bot.yaml b/.github/workflows/auto-merge-bot.yaml index a55355d01..6e3bd37e4 100644 --- a/.github/workflows/auto-merge-bot.yaml +++ b/.github/workflows/auto-merge-bot.yaml @@ -16,6 +16,6 @@ jobs: private-key: ${{ secrets.APP_PRIVATE_KEY }} - name: Enable Pull Request Automerge - run: gh pr merge --merge --auto "${{ github.event.pull_request.number }}" + run: gh pr merge --merge --auto --repo "${{ github.repository }}" "${{ github.event.pull_request.number }}" env: GH_TOKEN: ${{ steps.app-token.outputs.token }}