Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion setup-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ runs:
fi

for attempt in 1 2 3; do
if git clone "$dep_repo" "custom/plugins/$dep_name"; then
# Partial clone (lazy blobs): full ref list for the .auto branch checkout below,
# but skips historic blobs, which drastically reduces transfer size for large repos
if git clone --filter=blob:none "$dep_repo" "custom/plugins/$dep_name"; then
break
fi
rm -rf "custom/plugins/$dep_name"
Expand Down