It'd be useful to allow handling lists of values for a parameter, without having to resort to workarounds like parsing comma-separated lists in
string
types.
I think it would be useful to be able to specify something like:
steps:
- myorb/foo:
bar:
- baz
- qux
And have the
myorb/foo
command called with a
bar
parameter equal to
[ "baz", "qux" ]
.
CCI-I-701