Skip to content

Commit 2e0a8f2

Browse files
committed
fixed: check body is undefined
1 parent 1fff18e commit 2e0a8f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function run() {
2929
}
3030

3131
const issue_body = getIssueOrPRBody();
32-
if (!issue_body) {
32+
if (issue_body === undefined) {
3333
console.log("Could not get issue or PR body from context, exiting");
3434
return;
3535
}

0 commit comments

Comments
 (0)