mirror of
https://code.forgejo.org/actions/checkout.git
synced 2025-04-21 17:12:03 +03:00
Add fetch.parallel option
This commit is contained in:
parent
edc3278d02
commit
9efed57e86
7 changed files with 36 additions and 2 deletions
|
@ -73,6 +73,11 @@ inputs:
|
|||
fetch-tags:
|
||||
description: 'Whether to fetch tags, even if fetch-depth > 0.'
|
||||
default: false
|
||||
fetch-parallel:
|
||||
description: >
|
||||
Specifies the maximal number of fetch operations to be run in parallel at a time (submodules, or remotes when the --multiple option of git-fetch is in effect).
|
||||
A value of 0 will give some reasonable default. If unset, it defaults to 1.
|
||||
default: 1
|
||||
show-progress:
|
||||
description: 'Whether to show progress status output when fetching.'
|
||||
default: true
|
||||
|
@ -88,7 +93,7 @@ inputs:
|
|||
When the `ssh-key` input is not provided, SSH URLs beginning with `git@github.com:` are
|
||||
converted to HTTPS.
|
||||
default: false
|
||||
submodulesFetchJobs:
|
||||
submodules-fetch-jobs:
|
||||
description: >
|
||||
Specifies how many submodules are fetched/cloned at the same time. A positive integer allows up to that number of submodules fetched in parallel. A value of 0 will give some reasonable default. If unset, it defaults to 1.
|
||||
default: 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue