Skip to content

Commit 2db7fc2

Browse files
committed
Update incorrect action input name
1 parent bb0dbc1 commit 2db7fc2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/src/init/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ branding:
66
color: green
77

88
inputs:
9-
workspace-name:
9+
package-name:
1010
required: false
1111
default: null
12-
description: Name of the workspace you're initializing
12+
description: Name of the workspace/package you're initializing
1313

1414
install-deps:
1515
required: false
@@ -36,11 +36,11 @@ runs:
3636

3737
- name: Install Dependencies (Focused)
3838
if: inputs.workspace-name != null && inputs.install-deps
39-
run: yarn workspaces focus ${{ inputs.workspace-name }}
39+
run: yarn workspaces focus ${{ inputs.package-name }}
4040
shell: bash
4141

4242
- name: Install Dependencies (General)
43-
if: inputs.workspace-name == null && inputs.install-deps
43+
if: inputs.package-name == null && inputs.install-deps
4444
run: yarn install --immutable
4545
shell: bash
4646

0 commit comments

Comments
 (0)