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
Hi All,
I want to create a JIRA task automatically for failed builds. I know there is no direct support in Bamboo to achieve this but I can call JIRA REST API in Post Build Commands section.
On my agent Curl only runs under Cygwin terminal. How to run this below command from Post Build Commands under Cygwin terminal?
curl -D- -X POST -u USERNAME:PASSWORD -H "Content-Type: application/json" -d '{ "fields": { "project": { "key": "PROJECT-KEY" }, "summary": "${bamboo.planName} - ${bamboo.buildNumber}", "description": "Link to the failed build:\n${bamboo.resultsUrl}", "issuetype": { "name": "Bug" }}}' https://JIRA-BASE-URL/rest/api/2/issue/
Thanks,
Kapil
Hi!
You can do it by different way:
1. Trigger after where some plan will create issues e.g. curl command
https://bitbucket.org/chystoprudov/bamboo-failtrigger-plugin/src/master/
2. Let's do it as final task but it will not work properly.
Cheers,
Gonchik Tsymzhitov
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.