Sunday 16 February 2020

Tricks to work with JIRA






For Quick search 
text ~ "someText"


text ~ "stage%" AND reporter="narendraraghu@gmail.com" ORDER BY createdDate

Search for My assigned task in current spring 
(Note: Sprint Id is mandatory)
resolution = Unresolved AND Sprint = 10264 AND assignee in (currentUser()) order by updated ASC

Issue with the status OPEN and assigned to my name with some string
status = Open AND assignee in (currentUser()) AND text ~ "CP" order by updated DESC

Issue with the status OPEN and assigned to my name in this sprint
resolution = Unresolved AND Sprint in (10639) AND assignee in (currentUser()) order by updated DESC