PR Reviewer Checklist #75402
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Reviewer Checklist | |
on: pull_request_review | |
jobs: | |
# Note: PHP specifically looks for the name of this job, "checklist", so if the name of the job is changed, | |
# then you also need to go into PHP and update the name of this job in the GH_JOB_NAME_CHECKLIST constant | |
checklist: | |
runs-on: ubuntu-latest | |
if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: reviewerChecklist.js | |
uses: ./.github/actions/javascript/reviewerChecklist | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |