diff --git a/.github/workflows/regenerate-poetry-lock.yml b/.github/workflows/regenerate-poetry-lock.yml index fca6c31eb6..c0844f1c70 100644 --- a/.github/workflows/regenerate-poetry-lock.yml +++ b/.github/workflows/regenerate-poetry-lock.yml @@ -13,7 +13,7 @@ on: permissions: contents: write # needed to push the auto/regenerate-poetry-lock-* branch - pull-requests: write # needed to open and approve the PR + pull-requests: write # needed to open the PR and enable auto-merge jobs: regenerate-lock: @@ -72,12 +72,9 @@ jobs: env: GH_TOKEN: ${{ github.token }} - - name: Approve and enable auto-merge + - name: Enable auto-merge if: steps.diff.outputs.changed == 'true' run: | - # Approve with PAT_TOKEN_2 (a different identity from the creator, - # since GitHub does not allow a token to approve its own PR). - gh pr review "${{ steps.open-pr.outputs.pr_url }}" --approve - gh pr merge "${{ steps.open-pr.outputs.pr_url }}" --auto --squash + gh pr merge "${{ steps.open-pr.outputs.pr_url }}" --auto --squash env: - GH_TOKEN: ${{ secrets.PAT_TOKEN_2 }} + GH_TOKEN: ${{ github.token }}