feat(core): handle comma seperated lists in getMultilineInput#1183
feat(core): handle comma seperated lists in getMultilineInput#1183rickstaa wants to merge 1 commit intoactions:mainfrom
Conversation
d74927b to
6224d95
Compare
This commit makes sure that the core.getMultilineInput function can also parse comma-separated lists (i.e. `[val1,val2,val3]` and `val1,val2,val3`).
6224d95 to
688c365
Compare
|
any update on this? |
|
It would be better to put this in a new function People might already be using - uses: myaction
with:
multiline-param: |
item1, with comma
item2 no comma
item3, with, several, commasThis list has 3 items according to the current implementation, but your code would parse it as 7 items, potentially breaking the workflow. |
Good comment 👍🏻! I've opened issue #1566 to tackle your concerns. Regarding |
This PR makes sure that the core.getMultilineInput function can also parse comma-separated lists (i.e.
[val1,val2,val3]andval1,val2,val3).Fixes #184 (comment).