Skip to content

Commit f103b58

Browse files
authored
Fix bot reply emoji when nothing changed (#140)
1 parent aaee464 commit f103b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/postGithubComments.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ let header = `@${userToTag} Here are the results of running the ${suiteDescripti
7878
${summary.join("\n")}`;
7979

8080
if (!outputs.length) {
81-
git.createComment(+prNumber, +commentNumber, distinctId, postResult, [header], true);
81+
git.createComment(+prNumber, +commentNumber, distinctId, postResult, [header], somethingChanged);
8282
}
8383
else {
8484
const oldErrorHeader = `<h2>:warning: Old server errors :warning:</h2>`;

0 commit comments

Comments
 (0)