Enable Live Markdown Preview on web #89457
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 Author Checklist | |
on: | |
# We use pull_request_target here so that the GitHub token will have read/write access and be able to modify the PR description if needed. | |
# Warning: – when using the pull_request_target event, DO NOT checkout code from an untrusted branch: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
pull_request_target: | |
types: [opened, edited, reopened, synchronize] | |
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: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: authorChecklist.js | |
uses: ./.github/actions/javascript/authorChecklist | |
with: | |
GITHUB_TOKEN: ${{ github.token }} |