The end result is I'd like to create a filter that finds ANY issues that have child tasks that were CLOSED within a certain timeframe.
I know I can search by task ID, but I want to find ANY / ALL tasks that have child tasks.
If you have scriptrunner installed you can use something like (e.g. closed within the last 7 days)
issueFunction in parentsOf("status changed to closed during(-7d,now())")
Well, to your new question;
> Now if there is were a way to actually show the tasks that have become UNBLOCKED... that would be a godsend.
Take your query and save it as a filter (FilterA) - then use:
issuefunction in linkedIssuesOf("filter = FilterA")
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.
I ended up going with this:
issueFunction in hasLinks("this issue blocks") AND status changed to Closed after -7d
since it let me find any of those "blocker" tasks that have been closed, which should free up other users to work on the issues they were blocked by.
Now if there were a way to actually show the tasks that have become UNBLOCKED... that would be a godsend.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!
Register todayOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.