repo-sync / github-sync

โคต๏ธ A GitHub Action for syncing current repository with remote
https://github.com/marketplace/actions/github-repo-sync
MIT License
393 stars 103 forks source link

omit branch names from output #32

Closed zeke closed 4 years ago

zeke commented 4 years ago

Hey @wei ๐Ÿ‘‹๐Ÿผ

The current behavior of this Action is to output every branch name in the logs:

echo "Fetching tmp_upstream"
git fetch tmp_upstream

For projects that have lots of branches, this produces a lot of output.

My request is that we add the --quiet flag to git fetch tmp_upstream --quiet, or add support for a parameter like fetch_quietly that can be specified in the workflow file and passed to the Action as an argument.