Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support fetching without the --progress option #1067

Merged
merged 1 commit into from Sep 1, 2023

Commits on Aug 30, 2023

  1. Support fetching without the --progress option

    Setting the `progress` option to false in the `with` section of the
    workflow step will cause git fetch to run without `--progress`.
    
    The motivation is to be able to suppress the noisy progress status
    output which adds many hundreds of "remote: Counting objects: 85%
    (386/453)" and similar lines in the workflow log.
    
    This should be sufficient to resolve actions#894 and its older friends,
    though the solution is different to the one proposed there because
    it doesn't use the --quiet flag. IIUC git doesn't show the progress
    status by default since the output is not a terminal, so that's why
    removing the --progress option is all that's needed.
    
    Adding the --quiet flag doesn't make a lot of difference once the
    --progress flag is removed, and actually I think using --quiet would
    suppress some other more useful output that would be better left
    visible.
    
    Signed-off-by: Simon Baird <sbaird@redhat.com>
    simonbaird committed Aug 30, 2023
    Copy the full SHA
    4d7e069 View commit details
    Browse the repository at this point in the history