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.