0
1
Fork 0
mirror of https://github.com/actions/checkout synced 2024-07-02 16:42:40 +02:00
checkout/action.yml
2019-07-22 10:23:47 -04:00

26 lines
835 B
YAML

name: 'Checkout'
description: 'Get sources from a GitHub repository.'
author: 'GitHub'
inputs:
repository:
description: 'Repository name'
ref:
description: 'Ref to checkout (SHA, branch, tag).'
token:
description: 'Access token for clone repository'
default: ${{ github.token }}
clean:
description: 'If true, execute `execute git clean -ffdx && git reset --hard HEAD` before fetching'
default: true
submodules:
description: 'Directory containing files to upload'
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'
default: 'foo/${{github.ref}}'
runs:
plugin: 'checkout'