Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary Marchini <mmarchini@netflix.com>2020-10-02 23:33:20 +0300
committerMary Marchini <mmarchini@netflix.com>2020-10-02 23:52:40 +0300
commit919be9196f9f87aac5075a11b2af0b9c9fc3a949 (patch)
tree3fb3f7ce469047231049d72fa4652b600a0369c3
parentfa73561fca28529a4256640c3f6beae05b699077 (diff)
build: fix CQ after latest ncu release
The new behavior of node-core-utils (which fetches the merge commit instead of fetching the patch files) requires the whole repo to be cloned, instead of just the last commit. PR-URL: https://github.com/nodejs/node/pull/35468 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
-rw-r--r--.github/workflows/commit-queue.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml
index 6f4affe656c..cca9564f6c8 100644
--- a/.github/workflows/commit-queue.yml
+++ b/.github/workflows/commit-queue.yml
@@ -21,6 +21,9 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
+ # Needs the whole git history for ncu to work
+ # See https://github.com/nodejs/node-core-utils/pull/486
+ fetch-depth: 0
# A personal token is required because pushing with GITHUB_TOKEN will
# prevent commits from running CI after they land on master. It needs
# to be set here because `checkout` configures GitHub authentication