chore: fix falsy comments edge case in release notes (#16720)
This commit is contained in:
parent
af64140100
commit
a9991f5451
1 changed files with 1 additions and 3 deletions
|
@ -65,9 +65,7 @@ const setPullRequest = (commit, owner, repo, number) => {
|
||||||
|
|
||||||
const getNoteFromClerk = async (number, owner, repo) => {
|
const getNoteFromClerk = async (number, owner, repo) => {
|
||||||
const comments = await getComments(number, owner, repo)
|
const comments = await getComments(number, owner, repo)
|
||||||
if (!comments && !comments.data) {
|
if (!comments || !comments.data) return
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
const CLERK_LOGIN = 'release-clerk[bot]'
|
const CLERK_LOGIN = 'release-clerk[bot]'
|
||||||
const PERSIST_LEAD = '**Release Notes Persisted**\n\n'
|
const PERSIST_LEAD = '**Release Notes Persisted**\n\n'
|
||||||
|
|
Loading…
Add table
Reference in a new issue