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.