Hi, I'm new to this community and just getting started with Jira. great to meet you all!
I am trying to solve the following problem with Jira.
We have set up an automated process that creates Jira tasks. We then want the open tasks to be automatically assigned to an available employee based on a work plan.
Is this possible with Jira or do you know of an add-on application that can do this?
Thank you very much for your answers.
Where did you get the idea that it's not supported?
The marketplace says Version 3.1.4 • JIRA Server 6.3 - 6.4.9 • Released 2015-08-05
(Ok, it was merged into "script runner" a while ago, and you may have missed that, but that is clear on the marketplace)
Thanks for your reply. Can you please confirm in script runner we can use java code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that's what it's for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Will this below script work with script runnner.? If so please give us link to the add-on or the procedure/name? FormField RaiseExcep = getFieldByName ("Raise an Exception") FormField ExcepDetails = getFieldByName ("Exception Details") String type = (String) RaiseExcep.getValue() if (type == "Yes") { ExcepDetails.setHidden(false) ExcepDetails.setRequired(true) } else { ExcepDetails.setHidden(true) ExcepDetails.setRequired(false) }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't know. Have you tried it yet?
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.