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 am not quite sure what is the requirement here, could you please rephrase your question with an example?
For each build jira issues has been attached and it will be display in issues tab on the bamboo builds we want to capture those jira I'd and tasks in text or csv file is this possible
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
refer bamboo REST API doc - https://docs.atlassian.com/bamboo/REST/5.5.0/#d2e757
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Rob hit I am able to see the jira as issue key and jira summary is there any way to download those two values alone if that is done we are good could you please help us
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about using below REST API:
curl -X GET --user username:password -H 'X-Atlassian-Token: no-check' "http://localhost:8085/rest/api/latest/result/PF-AT-16?expand=jiraIssues"
Where "PF-AT-16" is the plan key and build number.
The above will give you the Jira issues linked to the build number.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mind that HTTP basic authentication with username and password has been deprecated. You should use a personal access token as a Bearer
credential in an HTTP Authorisation
header.
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.