File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ inputs:
1818 Whether to download Git-LFS files.
1919 See https://github.com/actions/checkout#usage
2020 default : " false"
21+ sparse-checkout :
22+ description : |
23+ Whether to enable sparse checkout and the list of files or directories to include in the checkout.
24+ See https://github.com/actions/checkout#usage
2125 persist-credentials :
2226 description : |
2327 Whether to persist the token credentials in the Git config.
5559 with :
5660 fetch-depth : ${{ inputs.fetch-depth }}
5761 lfs : ${{ inputs.lfs }}
62+ sparse-checkout : ${{ inputs.sparse-checkout }}
5863 token : ${{ inputs.token || github.token }}
5964 persist-credentials : true
6065
6368 with :
6469 fetch-depth : ${{ inputs.fetch-depth }}
6570 lfs : ${{ inputs.lfs }}
71+ sparse-checkout : ${{ inputs.sparse-checkout }}
6672 token : ${{ inputs.token || github.token }}
6773 persist-credentials : false
You can’t perform that action at this time.
0 commit comments