Fix error in changes-since-last-release script on PRs with no body

This commit is contained in:
Max Brunsfeld 2022-10-18 13:12:27 -07:00
parent 50ba8bdc9b
commit 5447f63e9d

View file

@ -67,7 +67,7 @@ async function main() {
console.log(" URL: ", webURL);
// If the pull request contains a 'closes' line, print the closed issue.
const fixesMatch = pullRequest.body.match(FIXES_REGEX);
const fixesMatch = (pullRequest.body || '').match(FIXES_REGEX);
if (fixesMatch) {
const fixedIssueURL = fixesMatch[2];
console.log(" Issue: ", fixedIssueURL);