You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm currently using this action to checkout a repo so that I can prepare a release branch. The only branch I need is the default branch, however I'm noticing in the logs that this action is pulling all remote upstream branches. This is unnecessary work
Is there a way to only fetch a single branch?
In the documentation, the ref parameter seems related, but upon closer look this only affects what branch is checked out, not fetched
# The branch, tag or SHA to checkout. When checking out the repository that
# triggered a workflow, this defaults to the reference or SHA for that event.
# Otherwise, uses the default branch.
ref: ''
Thank you!
The text was updated successfully, but these errors were encountered:
This is not just inefficient; it is extremely wasteful, and it's a giant code smell.
Imagine that you're dealing with the chromium code base like I am and you have to wait for 33 gigs of data to be transferred because you're not able to filter down to what you need.
Hi, I'm currently using this action to checkout a repo so that I can prepare a release branch. The only branch I need is the default branch, however I'm noticing in the logs that this action is pulling all remote upstream branches. This is unnecessary work
Is there a way to only fetch a single branch?
In the documentation, the
ref
parameter seems related, but upon closer look this only affects what branch is checked out, not fetchedThank you!
The text was updated successfully, but these errors were encountered: