Hi All,
I want to create a JQL which will help me to filter bugs which are created within the current sprint. I do not want to hardcode start date and end date as I'm supposed to use this in the dashboard.
sprint in openSprints() AND issuetype = Bug ORDER BY created DESC
Thanks but this will not help. I wanted to filter bugs created within the sprint. This is a ordering only
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
sprint in openSprints() AND issuetype = Bug ORDER BY created DESC
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.
sprint in openSprints() filters bugs to the CURRENT SPRINT, so it's not an ordering only.
Using this with the 'ORDER BY created DESC' on your JIRA dashboard gives you a dynamically updating filter, Sprint after Sprint.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately no. This gives bugs which created during past sprints as well but display order shows current sprint bugs first
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked for me. Thank you!
Sounds like OP needs to close out his older sprints..!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also interested in understanding if there is a function that can provide the start date of the sprint and the end date of the sprint so the JQL would look something like this
issuetype = Bug AND created >= startOfSprint() AND created <= endOfSprint()
What is important to know is during the period of the current sprint, were any new bugs created. The answers given address bugs that are assigned to the current sprint.
Sometimes new bugs are created during a sprint period and are not assigned to the current sprint period.
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.