Skip to content

Commit

Permalink
[get-last-commit] fixed check with invalid input name
Browse files Browse the repository at this point in the history
  • Loading branch information
wipe2238 committed Sep 24, 2023
1 parent 55fd9f9 commit f26bff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-last-commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ runs:
json_check "$json" "exclude-committers:$login"
done
if [[ "${{ inputs.message != '' }}" == "true" ]] && [[ "${{ inputs.message_search != '' }}" == "true" ]]; then
if [[ "${{ inputs.message != '' }}" == "true" ]] && [[ "${{ inputs.message-search != '' }}" == "true" ]]; then
message='${{ inputs.message }}'
message_search='${{ inputs.message-search }}'
if [[ "$message_search" == "contains" ]]; then
Expand Down

0 comments on commit f26bff1

Please sign in to comment.