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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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.