子任务更新时 JIRA / Greenhopper 更新故事
在我的 JIRA/Greenhopper 中,当我将故事下的子任务移至“进行中”时,我可以自动将故事移至“进行中”吗?
此外,当我关闭故事中的所有任务时,它可以自动将我的故事移至关闭。
In my JIRA/Greenhopper, when i move a subtask under story to "In Progress" can I automatically move my story to "In Progress"?
Also when I've closed all the tasks in my story can it automatically move my a story to close.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您想要做的是将后期功能添加到任务的工作流程转换中,从“打开”到“进行中”。后期功能应将父用户故事从“打开”转换到“进行中”。我使用了 Jira Scripting Suite 插件和 Jython 脚本做类似的事情。
您的算法将如下所示:
要点:
What you want to do is add post-function to the task's workflow transition from "Open" to In Progress". The post-function should transition the parent User Story from "Open" to In Progress". I used the Jira Scripting Suite plugin and a Jython script to do something similar.
Your algorithm would go something like this:
Key points:
如果我遗漏了什么,请告诉我
Please let me know , if I am missing something
安装免费的 JIRA Misc Workflow Extensions 插件
编辑“进行中”过渡,以使用相同的“进行中”过渡(类似于对其自身的引用)添加一个后期函数来过渡父问题。
注意:最好使用转换 ID,因为如果您有多个同名转换,它会默默失败。
Install a free JIRA Misc Workflow Extensions plugin
Edit your "In Progress" transition to add a Post Function to transition parent issue using the same "In Progress" transition (kind of a reference to itself).
Note: Prefer using transition id, as it silently fails if you have several transitions with the same name.