Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-58180

How to retrieve JIRA task status using jira-steps-plugin

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not A Defect
    • Icon: Minor Minor
    • jira-steps-plugin
    • None

      How I can get the status of a Jira task using jira-steps-plugin. 

      I have created a Jira task from Jenkins pipeline script and latter I want to retrieve the status of that task to continue further steps in my pipeline. 

      For example, when the task is updated as DONE, I need to trigger the deployment stage in my pipeline.

       

      This is what I used to create the task:

      node {
        stage('JIRA') {
          def testIssue = [fields: [ project: [key: 'PROJECT'],
                                       summary: 'New JIRA Created from Jenkins -       Summery.',
                                       description: 'New JIRA Created from Jenkins - Description.',
                                       issuetype: [name: 'Task']]]      response = jiraNewIssue issue: testIssue, site: 'JIRA'      echo response.successful.toString()
            echo response.data.toString()
          }
      }
      

       

       

            nrayapati Naresh Rayapati
            hhkkss hhkkss
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: