mirror of
https://github.com/actions/checkout.git
synced 2026-03-01 08:31:03 +08:00
Broaden show-progress description to cover all git operations
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f3b6b37fa6
commit
a5d425690b
@ -133,7 +133,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/
|
||||
# Default: false
|
||||
fetch-tags: ''
|
||||
|
||||
# Whether to show progress status output when fetching.
|
||||
# Whether to show progress status output for git operations.
|
||||
# Default: true
|
||||
show-progress: ''
|
||||
|
||||
|
||||
@ -78,7 +78,7 @@ inputs:
|
||||
description: 'Whether to fetch tags, even if fetch-depth > 0.'
|
||||
default: false
|
||||
show-progress:
|
||||
description: 'Whether to show progress status output when fetching.'
|
||||
description: 'Whether to show progress status output for git operations.'
|
||||
default: true
|
||||
lfs:
|
||||
description: 'Whether to download Git-LFS files'
|
||||
|
||||
@ -55,7 +55,8 @@ export interface IGitSourceSettings {
|
||||
fetchTags: boolean
|
||||
|
||||
/**
|
||||
* Indicates whether to use the --progress option when fetching
|
||||
* Indicates whether to show progress status output for git operations.
|
||||
* When false, git commands use --quiet to suppress verbose output.
|
||||
*/
|
||||
showProgress: boolean
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user