Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JMWE Linked Issues Status Condition not working for specific issue types

Derek Knudsen
April 28, 2023

I am trying to configure a workflow transition condition for an Epic where a custom issue type of Test Plan must be Done or Resolved before the Epic can be transitioned.  I model in the JMWE UI fine:

Screenshot 2023-04-28 at 8.03.50 AM.png

But when I save and go back to the Condition screen it shows the following:

Screenshot 2023-04-28 at 8.05.00 AM.png

and when I go back in to edit the condition it shows Issue Type of "Any" versus just the type I wanted (Test Plan). 

Screenshot 2023-04-28 at 8.07.37 AM.png

What am I doing wrong?  I tried it with Stories as well to see if it was the custom type but it doesn't work for any type.  How can I get the condition to just evaluate for one issue type?

1 answer

0 votes
Olap
Contributor
June 13, 2018

{% set trigger = false %}
{% for item in[{ title: "cust A"}, { title: "cust B"}, { title: "cust C"},{ title: "cust D"}] %}
{% if issue.fields["Customer"] == item.title %}
{% set trigger = true %}
{% endif %}
{% endfor %}
{{ trigger }}

Suggest an answer

Log in or Sign up to answer