You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Really excited about the new Jira Work Management tool, and I am doing a POC for our professional services team to manage various projects with external customers by this team.
I am looking for a way to automate a status change based on the number of "Risks" that have been identified.
I have an epic for each project that is being worked on. If a risk is identified within that project, a ticket with issuetype = Risk will be created within the epic.
I would like to automate the status change of the Epic, if there are 2 or more tickets (with issuetype = risk)
I have setup the following logic to try and return the number of risks within an epic, but it is currently not returning a value. I suspect because the lookup is inside of the (issue in epic)
Additionally, even the "{lookupIssues.size}}" within the branch is returning the total count, and not the count per epic
I think you are close, and just need a few adjustments. A scheduled rule with JQL runs the steps after the trigger for each issue found, so it may be getting a bit of collision on the issues to check.
How about something like this below... Please check the names of projects and issue types to confirm what I read from your image.
Best regards,
Bill
Thanks bill, that looks good. I did end up figuring it out a little bit after i posted this, but I left it up here to see what would be posted.
This is the solution I came up with which looks similar to what you did here except for the "size|0" part. Thanks a bunch!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Jeffrey. I am glad to learn you got it working.
The "size|0" adds a default value of zero when no issues match the JQL for the lookup. I have seen problems where this can collapse to null, and so cause issues in rules. So I add it for a bit of "belt and suspenders" insurance. :^)
__Bill
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.