Objective:
- When transitioning a Story to Status = In Progress
- I want to update the status of the Epic Link to Blocked
- If the Epic Link Current Status = Done
- And if the Issue Previous Status = Done
Can JSU handle this in its JQL Precondition?
This query works accurately in the JQL search:
issueFunction in epicsOf("key=fsd-6035") and status = done
In the JQL Precondition, the FSD-6035 should be which ever issue key that is being transitioned
I tried both of the following with no luck.
- JQL Expression: issueFunction in epicsOf("{issue.Issue Key}") and status = done
- JQL Expression: issueFunction in epicsOf("key={issue.Issue Key}") and status = done

Any thoughts on how to achieve my goal using JSU or other standard JIRA functions?