We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eea99d commit c322c7bCopy full SHA for c322c7b
1 file changed
.github/workflows/build-check_x86_64.yml
@@ -33,9 +33,9 @@ jobs:
33
PR_REPO_FULL_NAME: ${{ github.event.pull_request.head.repo.full_name }}
34
run: |
35
if [ "$PR_REPO_FULL_NAME" = "ctrliq/kernel-src-tree" ]; then
36
- git clone --branch "$HEAD_REF" "https://oauth2:${GITHUB_TOKEN}@github.com/ctrliq/kernel-src-tree" kernel-src-tree
+ git clone --depth 1 --branch "$HEAD_REF" "https://oauth2:${GITHUB_TOKEN}@github.com/ctrliq/kernel-src-tree" kernel-src-tree
37
else
38
- git clone --branch "$HEAD_REF" "$PR_CLONE_URL" kernel-src-tree
+ git clone --depth 1 --branch "$HEAD_REF" "$PR_CLONE_URL" kernel-src-tree
39
fi
40
41
- name: Build the Kernel
0 commit comments