🚀 JWT 3.0 is out 🚀 

The app was completely overhauled, and so was the documentation: Jira Workflow Toolbox (Server/Data Center) Home

The page you are viewing is still valid for all app versions prior to 3.0.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

On this page



Futures used to implement the example



Example: Moving story to "Ready for QA" once all its sub-tasks are in "Ready for QA" status (Transition issues)

When all sub-tasks of a story are moved to "Ready for QA", the story should move from "In Progress" to "Ready for QA". 
Insert Transition issues post-function into transition from "In Progress" to "Ready for QA" in sub-task's workflow:

Text to be parsed is: count(siblingSubtasks()) = count(filterByStatus(siblingSubtasks(), "Ready for QA"))


That boolean expression checks that all the sub-tasks are already at "Ready for QA" status. It is also possible to check the sub-tasks against more status, e.g. "QA Accepted" and "Done". In this case the following expression can be used:

count(siblingSubtasks()) = count(filterByStatus(siblingSubtasks(), "Ready for QA, QA Accepted, Done"))




Related Usage Examples