Skip to content

Commit

Permalink
Add missing space in cherry_pick.sh (pantsbuild#19026)
Browse files Browse the repository at this point in the history
> GraphQL: Could not resolve to a User with the login of
'thejcannonchrisjrn'. (u000)

Another 🤦
  • Loading branch information
thejcannon committed May 17, 2023
1 parent c13602a commit 2f2dc8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-support/bin/cherry_pick.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [[ -z $CATEGORY_LABEL ]]; then
read -r CATEGORY_LABEL
fi
REVIEWERS=$(gh pr view "$PR_NUM" --json author --jq '.author.login')
REVIEWERS+=$(gh pr view "$PR_NUM" --json reviews --jq '.reviews.[].author.login' | sort | uniq)
REVIEWERS+=" $(gh pr view "$PR_NUM" --json reviews --jq '.reviews.[].author.login' | sort | uniq)"

BODY_FILE=$(mktemp "/tmp/github.cherrypick.$PR_NUM.XXXXXX")
gh pr view "$PR_NUM" --json body --jq '.body' > "$BODY_FILE"
Expand Down

0 comments on commit 2f2dc8c

Please sign in to comment.