This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
中央のみを表示するblmap #137
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: Review by jaotan | |
on: | |
issue_comment: | |
types: [ created ] | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
if: github.event.issue.pull_request != null && github.event.sender.id == 8929706 && contains(github.event.comment.body, '@jaotan') && contains(github.event.comment.body, 'review') | |
steps: | |
- name: Review | |
run: | |
gh pr review ${{ github.event.issue.number }} -R "$GITHUB_REPOSITORY" -a -b "It was reviewed by a request by comment." | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |