I'm trying to check if an issue is unassigned on a transition but it doesn't seem to be working.
I created a script validator and tried the following
issue.assignee != 'Unassigned'
and this
issue.assignee != "Unassigned"
No matter if the what the Assignee is Unassigned or set to someones name the transition still happens.
Any ideas?
Unassigned is not an assignee name. Check for null. If the assignee is empty, it is shown as Unassigned in JIRA.
When I changed unassigned to null it worked. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Cynthia!
In case you want something easier than scripting, I recommend you take a look at the JIRA Misc Workflow Extensions, which contains some powerful additions to workflow management.
For the Assignee condition, you could add a Validator on the workflow that makes the 'Assignee' field required, so if someone tries to transition the issue without an Assignee definded, an error message (which can be customized) will be displayed.
Cheers!
Joao
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.