Added Joke and summary in bullet point

This commit is contained in:
Bhavik MacBook PRO 16 2023-05-07 06:40:58 +05:30
parent 179983f8bc
commit b5d09bfea3
3 changed files with 5 additions and 5 deletions

View file

@ -73,7 +73,7 @@ async function run() {
if (!content || content == fullReviewComment) {
// Extract the code from the pull request content
content = codeTemplate.replace('${code}', code);
content = code;
} else {
content = content.substring(reviewCommentPrefix.length);
content = content.replace('${code}', code);
@ -108,7 +108,7 @@ async function run() {
if (!content || content == fullReviewComment) {
// Extract the code from the pull request content
content = codeTemplate.replace('${code}', code);
content = code;
} else {
content = content.substring(reviewCommentPrefix.length);
content = content.replace('${code}', code);