Can someone please do help on this issue.
I got the same request from a colleague and solved it without add-ons. It can be done with an automation that adds a specific label to Epics with no children.
The trigger can we scheduled to run once a day, or just when someone creates an issue.
The automation does the following:
Use a "Related issues condition" to find all Epics with 0 children.
You can now make a JQL query that searches for all tickets with this label.
Hi @Dhanalakshmi s - Welcome to the Atlassian Community!
You will not be able to do this without an add-on app like ScriptRunner.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am part of the Customer Success Team for ScriptRunner. This can be accomplished with ScriptRunner add on. You can start a trial to try it for yourself and use the suggestion by @Sudarsana G. I am happy to go through the features with you if you are interested.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I’m Charlotte, a support engineer at Appfire and I’m here to help you.
Unfortunately, natively, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to get all epics with 0 children:
issuesInEpicCount = 0
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issuetype = Epic AND issueFunction not in hasLinks("is epic of") AND issueFunction not in linkedIssuesOf("issuetype = Story OR issuetype = Task")
issuetype = Epic
: Filters issues to only include epics.issueFunction not in hasLinks("is epic of")
: Excludes epics that are linked to other epics (since an epic cannot be a child of another epic).issueFunction not in linkedIssuesOf("issuetype = Story OR issuetype = Task")
: Excludes epics that are linked to stories or tasks.This query will return epics that do not have any linked stories or tasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sudarsana G
issuetype = Epic AND issueFunction not in hasLinks("is epic of") AND issueFunction not in linkedIssuesOf("issuetype = Story OR issuetype = Task") it's working fine when we disable the hasLinks() in Powerscript for Jira plugin and JQL Tricky plugin also we have disable it so can you please help me out with some other alternative ways.
Thank you in advance.
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.