我可以从工作流程中触发Youtrack中的版本发布吗?

时间:2015-07-10 15:17:24

标签: workflow youtrack

我想创建一个工作流,如果状态设置为指定值,则会释放当前版本的问题。以下示例是我尝试使用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;
  }
}

1 个答案:

答案 0 :(得分:1)

不幸的是,这是不可能的。现在,您只能操纵问题的某些属性,而不能操纵其他对象。