Add new linter checklist #1
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: Add new linter checklist | |
on: | |
workflow_dispatch: | |
inputs: | |
pr: | |
description: PR number | |
required: true | |
type: number | |
permissions: | |
pull-requests: write | |
jobs: | |
add-comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add checklist | |
run: | | |
# Avoid adding multiple comments for the same PR. | |
comment_exist=$(gh pr view "$NUMBER" \ | |
--json comments \ | |
--jq '.comments[].author | select(.login=="github-actions") | .login' \ | |
| wc -l) | |
[ "$comment_exist" -gt 0 ] && edit_last="--edit-last" | |
gh pr comment "$NUMBER" --body "$(cat .github/new-linter-checklist.md)" $edit_last | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ inputs.pr }} |