2019-07-23 15:50:59 +00:00
name : 'Checkout'
2019-08-16 15:00:30 +00:00
description : 'Checkout a Git repository.'
2019-07-23 15:50:59 +00:00
inputs :
repository :
description : 'Repository name'
ref :
description : 'Ref to checkout (SHA, branch, tag)'
token :
description : 'Access token for clone repository'
clean :
description : 'If true, execute `execute git clean -ffdx && git reset --hard HEAD` before fetching'
default : true
submodules :
2019-10-03 13:13:19 +00:00
description: 'Whether to include submodules : false to exclude submodules, true to include only one level of submodules, or recursive to recursively clone submodules; defaults to false'
2019-07-23 15:50:59 +00:00
lfs :
description : 'Whether to download Git-LFS files; defaults to false'
fetch-depth :
description : 'The depth of commits to ask Git to fetch; defaults to no limit'
path :
description : 'Optional path to check out source code'
runs :
2019-09-06 17:18:58 +00:00
# Plugins live on the runner and are only available to a certain set of first party actions.
2019-11-21 16:04:30 +00:00
plugin : 'checkout'