I have a custom field that want to be mandatory (on ticket creation) if the assignee user is member of a user group.
Hi @Mohammad Abu Tame you will definitely need some Marketplace App. I use ScriptRunner and Validator written as Jira expression can look like:
issue.assignee !=null && issue.assignee.groups.includes("site-admins") && issue.comments.length>0
I hope it'll help :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.