From 11e671e69dbc7952b26bb72a52bfd1a06e5a8b16 Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Fri, 2 Aug 2024 09:53:41 +0200 Subject: [PATCH] Add PR creator as reviewer to manifest-PR It makes sense that this user also wants to review the manifest PR. Signed-off-by: Rubin Gerritsen --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 026d3f8..f249e5c 100644 --- a/action.yml +++ b/action.yml @@ -126,7 +126,8 @@ runs: git remote add fork https://nordicbuilder:${{ inputs.token }}@github.com/${{ inputs.forked-repo }} git push -u fork manifest_pr:auto-manifest-${{ github.event.repository.name }}-${{ github.event.pull_request.number }} gh pr create --base main --repo ${{ inputs.target-repo }} --title "manifest: ${{ github.event.repository.name }}: ${{ inputs.manifest-pr-title-details }}" \ - --body "Automatically created by action-manifest-pr GH action from PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}" + --body "Automatically created by action-manifest-pr GH action from PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}" \ + --reviewer ${{ github.event.pull_request.user.login }} # Checkout phase for retrigger CI or update west.yml from PR to sha - name: Checkout sources from fork