Skip to content

Commit

Permalink
chore: fixup release notes detection
Browse files Browse the repository at this point in the history
  • Loading branch information
jkleinsc committed Oct 29, 2024
1 parent 5961ea8 commit 81e576c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const submitFeedbackForPR = async (
pr: PullRequest,
shouldComment = false,
) => {
const releaseNotes = pr.body && noteUtils.findNoteInPRBody(pr.body);
const releaseNotes = pr.body != null && noteUtils.findNoteInPRBody(pr.body);
const github = context.octokit;

if (!releaseNotes) {
Expand Down

0 comments on commit 81e576c

Please sign in to comment.