Skip to content

Commit

Permalink
fix: don't set key when updating
Browse files Browse the repository at this point in the history
  • Loading branch information
MorrisonCole committed Sep 17, 2022
1 parent 708c389 commit 327d082
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ const createOrUpdateReview = (comment, pullRequest) => __awaiter(void 0, void 0,
pull_number: pullRequest.number,
review_id: review.id,
body: comment,
event: onFailedRegexRequestChanges ? "REQUEST_CHANGES" : "COMMENT",
});
}
});
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ const createOrUpdateReview = (comment, pullRequest) => __awaiter(void 0, void 0,
pull_number: pullRequest.number,
review_id: review.id,
body: comment,
event: onFailedRegexRequestChanges ? "REQUEST_CHANGES" : "COMMENT",
});
}
});
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ const createOrUpdateReview = async (
pull_number: pullRequest.number,
review_id: review.id,
body: comment,
event: onFailedRegexRequestChanges ? "REQUEST_CHANGES" : "COMMENT",
});
}
};
Expand Down

0 comments on commit 327d082

Please sign in to comment.