Skip to content

Commit

Permalink
ci: pr に assignees を自動付与
Browse files Browse the repository at this point in the history
  • Loading branch information
kinari321 committed Dec 12, 2022
1 parent dd09ecc commit 62639ac
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/assign-reviewers-assignees.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---

name: Assign Reviewers Assignees

#
# 'on' にしている理由
# yamllintで怒られるため
#
# 参考: https://github.com/adrienverge/yamllint/issues/430
#
'on':
pull_request:

jobs:
assign-assignees:
runs-on: ubuntu-latest
if: ${{ github.actor != 'renovate[bot]' }} # renovate が作成した PR の場合は無視
timeout-minutes: 5
steps:
- name: リポジトリのチェックアウト
uses: actions/checkout@v3
- name: Assignees を付与する
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
assignees: `${{ github.actor }}`
});

0 comments on commit 62639ac

Please sign in to comment.