Skip to end of banner
Go to start of banner

How to get list of projects that are updated based on a specific date range

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

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

Instructions

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 

     --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.


Make necessary changes to the JQL based on the requirement.
  • No labels