Closed attilaolah closed 4 months ago
I think this still doesn't work, I get the same error when trying the action from this branch.
Don't merge yet.
OK it is working now. The issue was that strings.Split("", "\n") returns []string{""}, but we want an empty slice. strings.FieldsFunc can do that better.
strings.Split("", "\n")
[]string{""}
strings.FieldsFunc
I think this still doesn't work, I get the same error when trying the action from this branch.
Don't merge yet.