JIRA 连接器无法更改问题状态

JIRA connector unable to change status of issue

我正在尝试使用 JIRA 连接器来更改 JIRA 问题的状态。输入必要的值(issueId、statusName 和 transitions)后,我在尝试生成示例时遇到以下错误:TypeError: Cannot read property 'name' of undefined.

编辑截图:

Update Status 动作需要整个转换数组。它在这个数组中搜索您提供的状态名称(可以硬编码,例如:"Closed")。要使其工作,只需将 [{"id": transitions[2].id}] 替换为 transitions :)