LANG SELRCT

Apps Script Reference  (Create: Create new Spreadsheet | Create new Apps Script

Saturday, May 4, 2019

JIRAのJQLにはstatusとstatusCategoryがある


  • status
    • ワークフローのステータス名(任意で付けられる名前)
  • statusCategory
    • To Do
    • In Progress
    • Done
と理解しています


JQL の例

Advanced Search
status = Backlog

statusCategory = "To Do"
statusCategory = "In Progress"
statusCategory = "Done"


Advanced Search 画面

status


statusCategory


Basic Search 画面

Status


Status Category


補足

status と statusCategory の設定方法


WorkflowのDiagramを見てみる


BACKLOGのステータスをクリックしてみる


Edit Statusの画面でステータス名とカテゴリーを設定できる



statusCategoryChangedDate というのもあるらしい

ステータス変更された日を指定して検索できそう


参考

ワークフローで作業する
https://ja.confluence.atlassian.com/adminjiraserver072/working-with-workflows-828787890.html



Latest post

Extracting data from Google Sheets with regular expressions

Introduction Regular expressions are a powerful tool that can be used to extract data from text.  In Google Sheets, regular expressions ca...