我们需要审核我们的 JIRA,以确保每个 JIRA 都有特定的子任务。
我们需要确保 JIRA 具有以下结构:
父
- 子任务类型 1
- 子任务类型 2
- 子任务类型 3
我尝试使用CraftForge插件,但我不确定如何使查询正常工作。我想我需要类似的东西:
issue in parentIssuesFromQuery(
issuetype in subTaskIssueTypes()
and (
issuetype = 'subtask type 1' and
issuetype = 'subtask type 2' and
issuetype = 'subtask type 3'
)
)
但显然这不会返回任何结果。知道如何做到这一点吗?