Skip to content

Commit

Permalink
Merge pull request #3 from scoremedia/fix-single-input-array
Browse files Browse the repository at this point in the history
Fix single label array input not working
  • Loading branch information
tahirmt authored May 27, 2021
2 parents fa0a88e + 0db99cb commit 86f65f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ runs:
if [ -z "$labels" ]; then
echo "labels is empty"
else
command+=("--labels=\"$labels\"")
command+=("--labels=$labels")
fi
if [ -z "$excludedLabels" ]; then
echo "excludedLabels is empty"
else
command+=("--excluded-labels=\"$excludedLabels\"")
command+=("--excluded-labels=$excludedLabels")
fi
if [ -z "$branch" ]; then
Expand Down

0 comments on commit 86f65f6

Please sign in to comment.