chore: fix falsy comments edge case in release notes (#16720)

This commit is contained in:
Shelley Vohr 2019-02-04 14:57:38 -08:00 коммит произвёл GitHub
Родитель af64140100
Коммит a9991f5451
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -65,9 +65,7 @@ const setPullRequest = (commit, owner, repo, number) => {
const getNoteFromClerk = async (number, owner, repo) => {
const comments = await getComments(number, owner, repo)
if (!comments && !comments.data) {
return
}
if (!comments || !comments.data) return
const CLERK_LOGIN = 'release-clerk[bot]'
const PERSIST_LEAD = '**Release Notes Persisted**\n\n'