Skip to content

Feat: Breaking Change - default terragrunt_tf_binary to 'opentofu' #36

Feat: Breaking Change - default terragrunt_tf_binary to 'opentofu'

Feat: Breaking Change - default terragrunt_tf_binary to 'opentofu' #36

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"]}'