Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

READMEにリポジトリアーカイブについて追加 #128

READMEにリポジトリアーカイブについて追加

READMEにリポジトリアーカイブについて追加 #128

Workflow file for this run

name: Auto add reviewer
on:
pull_request:
types:
- opened
- reopened
branches:
- main
- master
jobs:
add-reviewer:
runs-on: ubuntu-latest
if: >-
${{
github.actor != 'dependabot[bot]' &&
github.actor != 'renovate[bot]' &&
github.actor != 'github-actions[bot]' &&
github.actor != 'book000'
}}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Add reviewer
run: |
gh pr edit ${{ github.event.pull_request.number }} --add-reviewer book000 || true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}