diff --git a/.github/workflows/automated-review.yml b/.github/workflows/automated-review.yml new file mode 100644 index 00000000..3e8c7ee0 --- /dev/null +++ b/.github/workflows/automated-review.yml @@ -0,0 +1,15 @@ +name: Automated Review Request +on: + pull_request: + types: [opened] + +jobs: + automate-review: + runs-on: ubuntu-latest + steps: + - name: Request Review + uses: octokit/request-action@v2.x + with: + reviewers: stardustmeg, Kleostro, YulikK + pull_request_number: ${{ github.event.pull_request.number }} + repository_token: ${{ secrets.GITHUB_TOKEN }}