File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ jobs:
48
48
if [ -z "$COMMENT_ID" ]
49
49
then
50
50
# Create new comment
51
- jq --rawfile body comment_body.txt '{"body":$body}' -n | gh api "repos/${{ github.repository } }/issues/${PR_NUMBER}/comments" -X POST --input -
51
+ jq --rawfile body comment_body.txt '{"body":$body}' -n | gh api "repos/${GITHUB_REPOSITORY }/issues/${PR_NUMBER}/comments" -X POST --input -
52
52
else
53
53
# Update existing comment
54
- jq --rawfile body comment_body.txt '{"body":$body}' -n | gh api "repos/${{ github.repository } }/issues/comments/${COMMENT_ID}" -X PATCH --input -
54
+ jq --rawfile body comment_body.txt '{"body":$body}' -n | gh api "repos/${GITHUB_REPOSITORY }/issues/comments/${COMMENT_ID}" -X PATCH --input -
55
55
fi
56
56
env :
57
57
GITHUB_TOKEN : ${{ github.token }}
You can’t perform that action at this time.
0 commit comments