From 747a0410cdad4831c6aef2ccf23b95ac69c25c8b Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Mon, 23 Aug 2021 16:24:32 +0300 Subject: [PATCH] Fix workflow step to request PR reviewers (#3948) --- .github/workflows/create_pull_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_pull_request.yml b/.github/workflows/create_pull_request.yml index f43061366..396509a92 100644 --- a/.github/workflows/create_pull_request.yml +++ b/.github/workflows/create_pull_request.yml @@ -42,8 +42,8 @@ jobs: github-token: ${{secrets.GITHUB_TOKEN}} script: | github.pulls.requestReviewers({ - owner: context.repo.owner - repo: context.repo.repo - pull_number: ${{ steps.create-pr.outputs.result }} + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: ${{ steps.create-pr.outputs.result }}, team_reviewers: ['virtual-environments-akvelon'] }) \ No newline at end of file