At the moment I'm working on development of new WorkFlow in Jira and have a case, that I don't know how to implement.
We have several statuses in our dev cycle, - such as "Waiting for reproduce" and "Developemnt", - mostly it depends on the current assignee of the bug, - if it the QA - status is "Waiting for reproduce", if developer - "Development".
At the moment when creating a bug it can be assigned on the creation step to qa, or developer, or pm. So I need to make a condition like this:
if assignee in group "Developers":
status = "Development";
elif assignee in group "QA
status = "Waiting for reproduce"
else:
status = "Open"
I need to make this condition transition on "create" step and on other steps... Can you advice me some tricks or links, that can help me to handle this case?
Best regards, Alexander.