Hi,
we use jmwe for transition issues in our service management project.
for instance if all linked issues status Design Approval then main issue status changes as design approval.
But here is the question, either linked issues are design approval or canceled main issue has to be design approval for this we created below script. unfortunately it doesnot work, when one of linked issue is cancel and other status are design approval i want to see main issue status as design approval. How can i write a script for this or is there other way ?
{{ linkedIssue | linkedIssues(["status"]) | field("fields.status.name") | allIn("Design Approval") }} or {{ linkedIssue | linkedIssues(["status"]) | field("fields.status.name") | allIn("Canceled") }}
Hi @nida ergenç Welcome to the community!
Could you please test the below expression:
{{ linkedIssue | linkedIssues(["status"]) | field("fields.status.name") | allIn(["Design Approval", "Canceled"]) }}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.