we are currently experimenting with Script runner for Bamboo and would like to know how to get the issue keys that are part of the build.
Apologies for the delay in responding.
I've assumed that the Jira issue keys your talking about appear in the "Issues" tab as "Linked Issues" on your build?
If so you'll need to replace the planKey in the example below and run the script below in the Script Console:
import com.atlassian.bamboo.build.JiraIssueResultsManager
import com.atlassian.bamboo.plan.PlanKey
import com.atlassian.sal.api.component.ComponentLocator
def jiraIssueResultsManager = ComponentLocator.getComponent(JiraIssueResultsManager)
def planKey = "KEY"
def issues = jiraIssueResultsManager.findJiraIssuesForPlanKey(new PlanKey(planKey))
issues.collect { issue ->
"$issue.issueKey, $issue.issueType.linkDescription, $issue.issueType.linkType"
}
That will show you the issue key, link description and link type.
Let us know how that goes.
Adam
Thanks Adam this help. One more this, how do i pass the plan key as parameter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The example I posted should show you how that's done. The line your interested in is:
def issues = jiraIssueResultsManager.findJiraIssuesForPlanKey(new PlanKey(planKey))
Or do you mean how we put the plan key into the output along with the link types?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Adaptavist Supp : any resonse?
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.