I have a transition that want to rotate to the corresponding state according to different conditions, how could I to set it ?
Hi @yundong.li ,
Would any of the options listed in advanced issue workflows cover your use case? https://support.atlassian.com/jira-cloud-administration/docs/configure-advanced-issue-workflows/
hi @Carlos Garcia Navarro @Hyrum Steffensen _Appfire_ thanks very much.
like this pic:
I hope it is just see the transition01 in the status0 screen,
and when people click transition01, it will automatically flow to status01 or status02 according to condition01 and condition02.
I have use the automation for jira plug , but in the status0 screen, we can see the condition01 and condition02,but this is not I want.
so could I set one transition01 ? if could ,How can I do ?
thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello yundong_li,
Follow these steps:
Regards,
Hyrum
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello yundong_li,
Thanks for posting your question to Atlassian Community. Consider using a scripting solution such as Automation for Jira, Scriptrunner or Power Scripts.
Here is an example of a SIL script that would run in Power Scripts:
if (nameOfCustomField == "text condition") {
autotransition("transition name", key, false);
}
Here is further documentation on using the autotransition() routine.
There are many ways to run the script such as a Jira event listener.
Regards,
Hyrum
Please note that I am a product engineer for Power Scripts and work for Anova Apps, an Appfire company.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.