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 the list of issues to a CSV file that are is updated before 2019-06-30.

  1. Use the actions getIssueList you 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 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.


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

...