Visual progress of work item
Return a visual progress bar depending on a work item status.
Configuration
Create a Custom smart text field and use the General parsing mode.
Expression
%{%{issue.status} = "Open" ? "🟩🟩🟩🟩🟩" :
( %{issue.status} = "Planning" ? "🟩🟩⬜️⬜️⬜️" :
( %{issue.status} = "In Progress" ? "🟩🟩🟩⬜️⬜️" :
( %{issue.status} = "In Review" ? "🟩🟩🟩🟩⬜️" :
( %{issue.status} = "Done" ? "🟩🟩🟩🟩🟩" :
"⬜️⬜️⬜️⬜️⬜️" ))))}
Please, replace the status names as well as the completion emojis with the ones of your choice. Any status not included in the sequence will return 1.
