GitHub CLI 以 GitHub 操作中的不同用户身份批准拉取请求

GitHub CLI approve Pull Request as different user in GitHub Actions

我有 GitHub 批准合并请求的操作:

      - name: Approve a PR
        run: gh pr review --approve "$PR_URL"
        env:
          PR_URL: ${{github.event.pull_request.html_url}}
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

当操作运行时,批准由 github-actions 执行。有什么方法可以以不同的用户身份执行 gh pr review --approve

我可以在 GITHUB_TOKEN 字段中为不同的用户使用令牌。