Ensuring Completed Epics are Closed

An issue that project manager’s often face is ensuring that when all the work in an Epic is completed, that the Epic itself is closed.

One tool that can be employed is creating a dashboard that lists all all open Epics, where the stories in that Epic have all been resolved.

To create that dashboard, you can use filter such as the following:

project = "Project Name" AND resolution= unresolved AND issueFunction in epicsOf("resolution = resolved") AND NOT issueFunction in epicsOf("resolution = unresolved")



Note: you might need to substitute “resolution = resolved” with a subquery that works for your workflow’s definition of resolved (and unresolved)

(This query requires the ScriptRunner plugin)