Find all Epic issue types
Which are set to a "Done" resolved state
But which have child issues which are not in a "Done" resolved state
How might I do this with JQL?
Welcome to the community, you can achieve the required functionality by using a third party plugin, famous one's are
below is the example of JQL Search Extensions for Jira & reports
find all epics with status=done where child's status is not equal to done
issue in epicOf("status!=done") and status=done
Can not be done with JQL alone, but with Script Runner for Jira there are JQL Extension for this kind of stuff, eg:
-- All Issues from BABE withe done Epic but Issue is not done
issueFunction in issuesInEpics("project = BABE and resolution is not EMPTY") and resolution is EMPTY
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.
Hello Kimmo,
What Maximilian wrote is correct, this is not possible by default in JQL.
You need ScriptRunner or some other plugin(there a few others).
BR, Olga
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sidenote: I would also suggest to protect your Epic workflow in two ways:
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.
@Kimmo Kyle I am using JMWE application for that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah - so the Jira workflow schemes don't natively support such rules? It can only be done with a 3rd party app?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kimmo Kyle native Jira doesn't have much advanced rules. I do suggest both JMWE or Script Runner as very basics applications to achieve anything. There are tons in feature request in Atlassian backlog, but its like 10 years "Gathering interest". Those app will do it and will do it now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.