Versions Compared

Key

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

This article helps you in getting to get the list of project names, key, issues based on the date rangeupdated date of the issues using Jira Command Line Interface (CLI).

Instructions

You c

...

In this example, using the actions getIssueList and runFromProjectList you can get the list of

...

issues to a CSV file that are updated before 2019-06-30.

  1. Use the actions getIssueList you 

    Code Block
    themeMidnight
     --action runFromProjectList --input "--action getIssueList --jql ""\"project = @project@ AND updatedDate <= 2019-06-30\""" --file July17_1021AMIssues.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.