Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article helps you to get the list of issues based on the updated date of the issues using Jira Command Line Interface (CLI).

...

In this example, using the actions getIssueList and runFromProjectList you can get extract the list of issues to a CSV file that is issues that were updated before 2019-06-30 into a CSV file. 

  1. Execute the below CLI command to return the list of issues in an Issues.csv file.

    Code Block
    themeMidnight
     --action runFromProjectList --input "--action getIssueList --jql ""\"project = @project@ AND updatedDate <= 2019-06-30\""" --file Issues.csv"


The parameters used in the actions above script are:

  • file : Name (or path) of the file specified in the command.
  • jql : Standard way to specify a search for issues for getIssueList, runFromIssueList, and similar CLI actions.


Info
Make necessary changes to the JQL based on the requirement.

...