From 3df79e0276f4013ea6ed57534f3478cd2b1ef8c0 Mon Sep 17 00:00:00 2001
From: Ting <tihuang@microsoft.com>
Date: Tue, 23 Jul 2019 11:50:59 -0400
Subject: [PATCH] add checkout action.yml (#1)

* initial test.

* test

* Update action.yml

* Update action.yml

* Update action.yml

* Update action.yml

* Update action.yml
---
 action.yml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 action.yml

diff --git a/action.yml b/action.yml
new file mode 100644
index 0000000..15f9a0e
--- /dev/null
+++ b/action.yml
@@ -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'