Skip to content

Commit

Permalink
Merge a436dca into 28b9e67
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Feb 5, 2022
2 parents 28b9e67 + a436dca commit 7ffa621
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (a *Action) renderOutput() error {
for _, key := range keys {
var outputDefault string
if len(a.Inputs[key].Default) > 0 {
outputDefault = fmt.Sprintf("`\"%s\"`", a.Inputs[key].Default)
outputDefault = fmt.Sprintf("`%#v`", a.Inputs[key].Default)
}
row := []string{key, "string", strconv.FormatBool(a.Inputs[key].Required), outputDefault, wordWrap(a.Inputs[key].Description, maxWords)}
inputTable.Append(row)
Expand Down
2 changes: 1 addition & 1 deletion test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
separator:
description: 'Split character for array output'
required: true
default: " "
default: "\n"
files:
description: 'Check for changes using only this list of files (Defaults to the entire repo)'
required: false
Expand Down

0 comments on commit 7ffa621

Please sign in to comment.