You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I would like to get the current sprint name when ever a sprint is created .
I also have one more field name Issue logged date where in an issue type gets automatically created when ever a sprint gets created.
HHow do I get current sprint name or ID and issue logged date when ever the sprint gets created .
HHere is the code for creating issue type when ever the sprint gets created
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.config.PriorityManager
def issueFactory = ComponentAccessor.getIssueFactory()
def loggedInUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def newIssue = issueFactory.getIssue()
def project = ComponentAccessor.projectManager.getProjectByCurrentKey("ABC")
def IssueType = ComponentAccessor.constantsManager.getAllIssueTypeObjects().find { it.getName() == "Issue type 1" }
def sprintCF = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Sprint")
// Get sprint field from the issue fields as a Map
newIssue.setSummary("Issue type 1 created for ${sprintCF}") ///How do I get this ?
newIssue.issueloggeddate(Get sprint create date" )// How do i get this ?
newIssue.setProjectObject(project)
newIssue.setIssueType(IssueType)
newIssue.setCustomFieldValue(sprintCF, [event.sprint]) //add the issue to the sprint that just started and triggered the event
//... any other fields
Map<String,Object> newIssueParams = ["issue" : newIssue] as Map<String,Object>
ComponentAccessor.issueManager.createIssueObject(loggedInUser, newIssueParams)