Is it possible to automatically create an issue (in project B) when I create an issue in project A?
Hi Steve,
This is not possible by default in JIRA, but you may try the plugin below:
Cheers,
Danilo
Specifically, see How to create subtasks on initial issue create
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I used the Script runner plugin for similar task. On create transition, I add a post-function that creates another issue.
Here is the sample code.
def projectName = "Dev Tools" // Name of project you want to create the issue in projectMgr = ComponentManager.getInstance().getProjectManager() def wasIndexing = ImportUtils.indexIssues ImportUtils.indexIssues = true issueObject = issueFactory.getIssue() issueObject.setProject(projectMgr.getProjectByName(projectName)) issueObject.setIssueTypeId("1") // normal subtask // set subtask attributes issueObject.setFixVersions(issue.getFixVersions()) issueObject.setAffectedVersions(issue.getAffectedVersions()) issueObject.setPriority(issue.getPriority()) issueObject.setSummary(issue.summary) issueObject.setDescription(issue.getDescription()) issueObject.setReporter(issue.getReporter()) issueObject.setAssignee(issue.getAssignee()) // Create subtask Map params = new HashMap(); params.put("issue", issueObject); Issue StreamReq = issueManager.createIssueObject(authenticationContext.getUser().getName(), params)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
You can do it using one of the scripting utilities plugin like script runner or jjupin, jss.. or develop you own plugin.
Look to this links its can help you and give you more ideas.
https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunnerhttps://marketplace.atlassian.com/plugins/com.quisapps.jira.jsshttps://marketplace.atlassian.com/plugins/com.keplerrominfo.jira.plugins.jjupin
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.