Hi,
is it somehow possible to add the following condition to a transition:
If there is no assignee added to an issue, it shouln´t be possible to move the issue from the status "In" to the next one.
Kind Regards
Mathias
Hello,
You need an add-on for it.
For example, you could use the Power Scripts add-on:
https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation
You could create the following condition:
if (isNull(assignee)) {
return false;
}
return true;
You can read more about conditions here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows
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.