Workflow arguments could previously be set as type boolean, but a user could provide a string as the value. Where a user provided a string for a boolean type argument, we previously interpreted the argument as
False
, regardless of the string content. This update evaluates the string. If the value of the string is "true" (or a variation of capitalizations of "true"), we will now evaluate this as the boolean True
.