зеркало из https://github.com/electron/electron.git
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:
Родитель
cdff1bde22
Коммит
73da4b7215
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче