Skip to content

Need to be able to lookup teams based on the list of names considering that not all of them may exists yet #41

Need to be able to lookup teams based on the list of names considering that not all of them may exists yet

Need to be able to lookup teams based on the list of names considering that not all of them may exists yet #41

name: Assign PR Reviewers
on:
issue_comment:
types: [created]
jobs:
assign-reviewers:
runs-on: ubuntu-latest
if: ${{ github.event.issue.pull_request != null && github.event.comment.body == '/review' }}
steps:
- name: Assign PR Reviewers
env:
GITHUB_TOKEN: ${{ secrets.ENV0_BOT_PAT }}
run: |
curl -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.issue.number }}/requested_reviewers \
-d '{"team_reviewers":["env0-team"]}'