build: fix doc only change when there isn't a PR (#20749)

* build: fix doc only change when there isn't a PR

Fixes issue where CI was mistakenly marking a PR as a doc only change because the CI was kicked off before the PR was created.
This commit is contained in:
John Kleinschmidt 2019-10-28 09:40:21 -04:00 коммит произвёл GitHub
Родитель cdff1bde22
Коммит 73da4b7215
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -20,8 +20,8 @@ async function checkIfDocOnlyChange () {
if (prsForBranch.data.length === 1) {
pullRequestNumber = prsForBranch.data[0].number
} else {
// If there is more than one PR on a branch, just assume that this is more than a doc change
process.exit(0)
// If there are 0 PRs or more than one PR on a branch, just assume that this is more than a doc change
process.exit(1)
}
} else if (args.prURL) {
// CircleCI doesn't provide the PR number for branch builds, but it does provide the PR URL