[ci] Fix comment-command action not running runners (#4393)

Triggering runners from a push from a runner requires use of a PAT.
https://stackoverflow.com/questions/67550727/push-event-doesnt-trigger-workflow-on-push-paths-github-actions
This commit is contained in:
Peter Johnson
2022-09-02 08:16:31 -07:00
committed by GitHub
parent 0ef8a4e1df
commit fed68b83b4

View File

@@ -29,7 +29,7 @@ jobs:
run: |
gh pr checkout $NUMBER
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_TOKEN: "${{ secrets.COMMENT_COMMAND_PAT_TOKEN }}"
NUMBER: ${{ github.event.issue.number }}
- name: Set up Python 3.8
uses: actions/setup-python@v2