hello,
we use a script Groovy (plugin Scriptrunner) in Jira 7 to create a new issue from a workflow to an another workflow
we use "import com.atlassian.jira.issue.IssueFactory" like this:
IssueFactory issueFactory = ComponentAccessor.getComponent(IssueFactory)
[...]
MutableIssue newIssue = issueFactory.getIssue()
but with Jira 8, the value newIssue returns null.
can you help us please so "issueFactory.getIssue()" works correctly? what shall we modifiy ?
Thanks