Open3

Jiraでのチケット管理ルールなど、Jiraについて🌟

まさぴょんまさぴょん

JIRAでの検索手法

  • 例えば、次のようにJQL (JIRA内のSQL)のようなものでカスタム検索ができる🌟

  • Bugチケットで 進行中, Todo で Status High, Highest 以上

    • issutype: Bug
    • status: 進行中, TODO
    • priority: High, Highest
    • labels: QA摘出
project = プロジェクト名 AND issuetype = Bug AND status in ("In Progress", "To Do") AND priority in (High, Highest) AND labels = QA摘出 ORDER BY created DESC
  • Bugチケットで In Review, Done, Won't FIX で Status High, Highest 以上
    • issutype: Bug
    • status: In Review, Done, Won't FIX
    • priority: High, Highest
    • labels: QA摘出
project = プロジェクト名 AND issuetype = Bug AND status in ("In Review", "Done" , "Won't FIX") AND priority in (High, Highest) AND labels = QA摘出 ORDER BY created DESC
  • Bugチケットで Status High, Highest 以上
    • issutype: Bug
    • priority: High, Highest
    • labels: QA摘出
project = プロジェクト名 AND issuetype = Bug AND priority in (High, Highest) AND labels = QA摘出 ORDER BY created DESC

参考・引用

https://www.ricksoft.jp/blog/articles/001398.html

https://ja.confluence.atlassian.com/jirasoftwareserver0820/searching-for-issues-1095249187.html