We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a612639 commit d1f10a8Copy full SHA for d1f10a8
1 file changed
checkout-with-deps/action.yml
@@ -2,7 +2,7 @@ name: "Checkout with dependencies"
2
description: "Checks out a repo along with its dependencies listed in project.deps"
3
4
inputs:
5
- org-or-user:
+ owner:
6
description: "The organization or user that owns the repository to checkout."
7
required: true
8
repo:
@@ -21,7 +21,7 @@ runs:
21
- name: Checkout base repo
22
uses: actions/checkout@v5
23
with:
24
- repository: ${{ inputs.org-or-user }}/${{ inputs.repo }}
+ repository: ${{ inputs.owner }}/${{ inputs.repo }}
25
ref: ${{ inputs.ref }}
26
token: ${{ inputs.token }}
27
path: ${{ inputs.repo }}
0 commit comments