From 651d82954ce3f1e75098342da9dca33df6289449 Mon Sep 17 00:00:00 2001 From: Vipul Date: Mon, 28 Nov 2022 16:18:36 +0530 Subject: [PATCH 1/3] Change pull_request to pull_request_target for PR review --- .github/workflows/add-reviewer-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add-reviewer-pr.yml b/.github/workflows/add-reviewer-pr.yml index d4485fe..b2928f0 100644 --- a/.github/workflows/add-reviewer-pr.yml +++ b/.github/workflows/add-reviewer-pr.yml @@ -1,6 +1,6 @@ name: Add Reviewer PR on: - pull_request: + pull_request_target: types: [opened] jobs: run-action: @@ -13,4 +13,4 @@ jobs: - name: add_reviewer run: | - curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/pulls/${{ github.event.pull_request.number}}/requested_reviewers -d '{"reviewers":["${{steps.oncall.outputs.CURRENT}}"]}' \ No newline at end of file + curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/pulls/${{ github.event.pull_request.number}}/requested_reviewers -d '{"reviewers":["${{steps.oncall.outputs.CURRENT}}"]}' From 2a6cd14175b9e719697dd6893d3a6b934e7ca4fd Mon Sep 17 00:00:00 2001 From: Vipul Date: Tue, 29 Nov 2022 13:16:11 +0530 Subject: [PATCH 2/3] Add assignee to PR automatically --- .github/workflows/add-reviewer-pr.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add-reviewer-pr.yml b/.github/workflows/add-reviewer-pr.yml index b2928f0..cf65783 100644 --- a/.github/workflows/add-reviewer-pr.yml +++ b/.github/workflows/add-reviewer-pr.yml @@ -11,6 +11,10 @@ jobs: run: | echo "CURRENT=$(curl --request GET 'https://api.pagerduty.com/oncalls?include[]=users&schedule_ids[]=P5VG2BX&earliest=true' --header 'Authorization: Token token=${{ secrets.PAGERDUTY_TOKEN }}' --header 'Accept: application/vnd.pagerduty+json;version=2' --header 'Content-Type: application/json' | jq -r '.oncalls[].user.name')" >> $GITHUB_OUTPUT - - name: add_reviewer + - name: Request Review run: | curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/pulls/${{ github.event.pull_request.number}}/requested_reviewers -d '{"reviewers":["${{steps.oncall.outputs.CURRENT}}"]}' + + - name: Add Assignee + run: | + curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.issue.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}' From f8116c8945f09a2bcaa8992fb0f663a1a2a02c3f Mon Sep 17 00:00:00 2001 From: Vipul Date: Tue, 29 Nov 2022 13:19:00 +0530 Subject: [PATCH 3/3] Bug fix in PR assignee workflow --- .github/workflows/add-reviewer-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-reviewer-pr.yml b/.github/workflows/add-reviewer-pr.yml index cf65783..3346d9e 100644 --- a/.github/workflows/add-reviewer-pr.yml +++ b/.github/workflows/add-reviewer-pr.yml @@ -17,4 +17,4 @@ jobs: - name: Add Assignee run: | - curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.issue.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}' + curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.pull_request.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}'