JQL query to know the stories that have been modified after the story status moved to "Ready To Release" or Accepted.
I am writing the below query -
project = "xxxxx" and "IssueType" = story and status changed TO ("Ready To Release") and sprint not in openSprints() and updatedDate is not EMPTY
But want to add another condition updatedDate > sprintEndDate
didn't find the columnname which indicate the SprintEndDate
Sorry for reply late, we are using Jira 3 and I didn’t find any custom field related to releaseDate added
Hi @neelam annad - You cannot compare two date fields in stand JQL. You would need to compare each date field to a range of values (like created >= 2019-12-01 to see issues created on or after December 1st).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I have found that this isn't actually possible:
There are some similar workarounds though
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.