mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
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>
This commit is contained in:
parent
fa73561fca
commit
919be9196f
3
.github/workflows/commit-queue.yml
vendored
3
.github/workflows/commit-queue.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user