I hv type of issue as a bug and lwd
Due to bugXyz..5 issues are blocked that linking has been done though linking Blocks
I need count of those linking issues which are not done or cancel
In above case script block count should 5
Hello @suvarna dixit
You can get a list of issues that a blocking an issue and limit that to the issues that are not done with this query.
issue in linkedIssues("<issue key of Bug>", "blocks") and status not in (Done,Cancel)
https://support.atlassian.com/jira-software-cloud/docs/jql-functions/#linkedIssues--
In an Automation Rule you can use the Lookup Issues action to execute that JQL.
https://support.atlassian.com/cloud-automation/docs/jira-automation-actions/#Lookup-issues
After executing the Lookup Issues action you can get the count of issues found by that action using the smart value
{{lookupIssues.size}}
There are more than150 bugs ,subquery is not working to check all the bugs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please show us the automation rule you are using.
Are you looking for the issue linked to a list of bugs or the bugs linked to a list of issues?
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.
If issues blocked by 4 diff issues out of 4 2 are from different projects then its not giving the correct count
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The Lookup Issues action will retrieve issues only from the projects you have specified in the Rule Details for the Scope of the rule. I see that your rule has a multiple projects scope. You will need to look at the details of the projects in scope and determine if projects are missing from the scope.
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.