我想创建一个工作流,如果状态设置为指定值,则会释放当前版本的问题。以下示例是我尝试使用issue.Milestone.released = true
行作为伪代码。
rule Release Issue when state is set to fixed.
when issue.State.changed {
if (issue.State == {Fixed}) {
issue.Milestone.released = true;
}
}
答案 0 :(得分:1)
不幸的是,这是不可能的。现在,您只能操纵问题的某些属性,而不能操纵其他对象。