Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
add checkout action.yml (#1)
* initial test. * test * Update action.yml * Update action.yml * Update action.yml * Update action.yml * Update action.yml
- Loading branch information
Ting
authored and
Danny McCormick
committed
Jul 23, 2019
1 parent
44679f6
commit 3df79e0
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 'Checkout' | ||
description: 'Get sources from a GitHub repository.' | ||
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: | ||
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' | ||
runs: | ||
plugin: 'checkout' |