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
clarify fetch-depth: 0 behavior in the documentation.
it is unclear if it will also provide local branch information or not.
if it does not provide local branch information the following code does not work:
if git rev-parse --quiet --verify ${{ env.git_ref_name }} > /dev/null; then
echo "branch_exists=true" >> $GITHUB_ENV
else
echo "branch_exists=false" >> $GITHUB_ENV
fi
fetch-depth: 0 reads like --mirror to me without looking into the code.
The text was updated successfully, but these errors were encountered:
clarify
fetch-depth: 0
behavior in the documentation.it is unclear if it will also provide local branch information or not.
if it does not provide local branch information the following code does not work:
fetch-depth: 0
reads like--mirror
to me without looking into the code.The text was updated successfully, but these errors were encountered: