I would like to write a query that will return all open tickets in the current sprint that have not been updated with a new comment in the past 24 hours
From what I have gathered from checking the forum, this is possible but only with a paid add-on such as Script Runner. Can anyone confirm that?
The above is a similar question.
This is what I have so far. It seems to work but could use some refinement if anyone has any ideas. Currently I would have to modify the active sprint manually.
sprint = 321 and status = "In Progress" AND updated < -1d
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could use sprint in openSprints () .
But the updated will bring you your issues in general(any field) that were updated. You will need to use the "issueFunction in commented ('after -1d') "
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Gustavo Félix I am under the impression that the issueFunction isn't available out of the box and requires a paid plugin. Is that right?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, thats included with scriptrunner.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok I will stick with the query that I have since we do not have ScriptRunner. Thank you for your help.
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.