How to update the status of jira ticket from jenkins build(manual build)

prabha vk November 15, 2020

How to update the status of jira ticket from Jenkins build(manual build)

> i need to update the status of jira ticket as per the Jenkin job 

> current status is "ready for staging deployment"

> it should move to "deployed on staging" after the triggering build from jenkins 

 

jiraAddComment idOrKey: 'MSDP-198', input: comment, site: 'JIRA'

jiraJqlSearch jql: 'issue = MSDP-198 'AND' status in (READY FOR STAGING DEPLOYMENT, DEPLOYED ON STAGING)', site: 'JIRA'

 

is this correct ? i am trying from jenkinsfile

Please suggest.

1 answer

0 votes
Hana Kučerová
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 16, 2020

Hi @prabha vk ,

if you need to update status, I believe you will need to use jiraTransitionIssue - Jira administrator should give the id of the transition, which should be executed,

jiraJqlSearch just searchs the data, but don't change them in any way

Suggest an answer

Log in or Sign up to answer