Skip to content

Commit

Permalink
Update working directory parameter name from "directory" to "dir"
Browse files Browse the repository at this point in the history
  • Loading branch information
nervo committed Mar 6, 2023
1 parent 0b64625 commit 1736a1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Manala
description: Manala

inputs:
directory:
description: Directory
dir:
description: Working directory
required: false
default: .

Expand All @@ -16,4 +16,4 @@ runs:
- name: Manala update
uses: manala/github-action-manala/update@v1
with:
directory: ${{ inputs.directory }}
dir: ${{ inputs.dir }}
6 changes: 3 additions & 3 deletions update/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Manala - Update
description: Manala - Update

inputs:
directory:
description: Directory
dir:
description: Working directory
required: false
default: .

Expand All @@ -13,6 +13,6 @@ runs:
steps:
- name: Manala update
shell: bash
working-directory: ${{ inputs.directory }}
working-directory: ${{ inputs.dir }}
run: |
manala update

0 comments on commit 1736a1a

Please sign in to comment.