Compare commits

..

1 commit

Author SHA1 Message Date
60439e3b11
fix: invalid API url
I misstyped the API URL T-T
2025-03-10 23:30:18 +01:00

View file

@ -147,7 +147,7 @@ if [ -z "$COMMENT_ID" ]; then
else
log "Editing comment $COMMENT_ID"
curl -o - -X 'PATCH' \
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/issues/$PR_ID/comments/$COMMENT_ID" \
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/issues/comments/$COMMENT_ID" \
-H 'Accept: application/json' \
-H "Authorization: token $GITHUB_TOKEN" \
-H 'Content-Type: application/json' \