瀏覽代碼

clarify name with owner (#87)

eric sciple 5 年之前
父節點
當前提交
4817b449b0
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      README.md
  2. 1 1
      action.yml

+ 1 - 1
README.md

@@ -34,7 +34,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
 ```yaml
 - uses: actions/checkout@v2-beta
   with:
-    # Repository name
+    # Repository name with owner. For example, actions/checkout
     # Default: ${{ github.repository }}
     repository: ''
 

+ 1 - 1
action.yml

@@ -2,7 +2,7 @@ name: 'Checkout'
 description: 'Checkout a Git repository'
 inputs: 
   repository:
-    description: 'Repository name'
+    description: 'Repository name with owner. For example, actions/checkout'
     default: ${{ github.repository }}
   ref:
     description: >