【问题标题】:how to find JIRA issues that were opened on specific stories, when this story list is changing当这个故事列表发生变化时,如何找到针对特定故事打开的 JIRA 问题
【发布时间】:2018-05-23 05:09:27
【问题描述】:

我们正在使用绿色料斗并拥有故事。当一个 Bug 打开时,它通过 'Story Label' 字段链接到一个故事。

现在我想创建一个查询,它将显示与 sprint 相关的所有错误,即与分配给 sprint 的故事相关的所有错误。

这是获取所有故事的查询:

project = TMP AND issuetype = Story AND fixVersion = 11113

这是获取故事所有错误的查询:

project = TMP AND issuetype = Bug AND "Story Label" = jim-887

如何将两者结合起来?

【问题讨论】:

    标签: jira jql jira-agile


    【解决方案1】:

    您可能想查看第三方JQL Tricks plugin。它有一个可以使用的函数 hasLinks()。例如:

    project = TMP and issuetype = story and fixVersion = 11113 and linkedIssuesInVersion(11113,"bug related to story")

    更多关于这个blog post的用法。

    谢谢,

    Nicholas Muldoon

    @GreenHopperTeam

    【讨论】:

      【解决方案2】:

      尝试以下方法(为清楚起见添加了多余的间距):

      project = 'TMP' and( 
            (issuetype = Story and fixVersion = 11113) or 
            (issuetype = Bug and "Story Label" = jim-887)
          )
      

      【讨论】:

        猜你喜欢
        • 2014-10-02
        • 2013-07-04
        • 1970-01-01
        • 2023-03-12
        • 2022-01-22
        • 1970-01-01
        • 2020-07-15
        • 2017-10-18
        • 1970-01-01
        相关资源
        最近更新 更多