Browse Source

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.
John Kleinschmidt 5 years ago
parent
commit
73da4b7215
1 changed files with 2 additions and 2 deletions
  1. 2 2
      script/doc-only-change.js

+ 2 - 2
script/doc-only-change.js

@@ -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