Skip to content

Commit 1736a1a

Browse files
committed
Update working directory parameter name from "directory" to "dir"
1 parent 0b64625 commit 1736a1a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Manala
33
description: Manala
44

55
inputs:
6-
directory:
7-
description: Directory
6+
dir:
7+
description: Working directory
88
required: false
99
default: .
1010

@@ -16,4 +16,4 @@ runs:
1616
- name: Manala update
1717
uses: manala/github-action-manala/update@v1
1818
with:
19-
directory: ${{ inputs.directory }}
19+
dir: ${{ inputs.dir }}

update/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Manala - Update
33
description: Manala - Update
44

55
inputs:
6-
directory:
7-
description: Directory
6+
dir:
7+
description: Working directory
88
required: false
99
default: .
1010

@@ -13,6 +13,6 @@ runs:
1313
steps:
1414
- name: Manala update
1515
shell: bash
16-
working-directory: ${{ inputs.directory }}
16+
working-directory: ${{ inputs.dir }}
1717
run: |
1818
manala update

0 commit comments

Comments
 (0)