You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( currentComment.user.type === 'Bot' && currentComment.body.includes( 'Build Server Comparison' ) ) {
267
270
commentInfo.comment_id = currentComment.id;
268
271
break;
269
272
}
270
273
};
271
274
272
-
commentInfo.body = '## Build Server Comparison';
275
+
commentInfo.body = "## Build Server Comparison\n\n";
273
276
274
277
// Post or update the comment.
275
278
if ( fileChanges.trim() === '' ) {
276
279
commentInfo.body += 'The contents of the `build` directory after running `npm run build` matches the contents of the WordPress/WordPress repository. No differences were found.';
277
280
} else {
278
-
commentInfo.body += 'The contents of the `build` directory after running `npm run build` has been compared with the contents of the WordPress/WordPress repository.
281
+
commentInfo.body += `The contents of the \`build\` directory after running \`npm run build\` has been compared with the contents of the WordPress/WordPress repository.
279
282
280
283
**Review these differences carefully for any unexpected results.**
0 commit comments