Two part question:
a. How do I access the Parent's issue.field.status.name ?
I created a Transition parent issue to put a Story into an "In Progress" status when one of its sub-tasks is put into a specific status ("In Development").
But if the parent is in any other status on the board (like "Code Review"), I don't want to change the parent's status if another of its child sub-tasks transitions to its specific "In Development" status. I want it to keep the Parent's current status unchanged.
b. does JWRE support this syntax?:
{% if issue.fields.status.name in ("New","Returned to Backlog","Ready to Start","Undropped") %}
trying to avoid a lot of "Ifs" ...