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.
Hi everyone.
Does anyone know if there is a way to get a number of comments who's author is the assignee on a ticket. If possible, it would be great
Basically, I want to make sure that assignee has left at least 2 comments per issue.
Thank you in advance,
Azur
Hello @Azur Mujezinovic
Have you installed a third party app that extends JQL capabilities? If so, which app?
Hello @Trudy Claspill ,
I currently have this Comment Custom Fields for Jira, but I understand that I can not accomplish my desires with this.
Before I would switch to some other add-on, such as ScriptRunner, I would like to make certain I can accomplish what I need.
Thank you,
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So far I have not found a plugin that provides a filter to select issues by the number of comments authored by a specific user.
I found an old post in the eazyBI Community that indicated it could be done with their app. That may be applicable only to self-hosted Jira.
You could use a custom field and an Automation Rule to keep track of how many comments are added by the Assignee, incrementing the count for each comment as it gets added.
In Jira Automation I know it is possible to access the list of comments for an issue with the smart value {{issue.comments} and you can drill down to see attributes of each comment, like the author, but I haven't figured out how to use that the count the number of comments per author.
Using the REST API you could get all the comments for a given issue (and a separate API call to get the assignee of the issues) and parse through the results to see if the assignee authored two or more comments.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have managed to make it work with custom field and Automation Rule.
In case someone would look for the same thing in the future :
- Create a custom field (Number of comments by Jira assginee)
- Add that field to screens/projects that you want
- Create an automation rule :
when : Rule is triggered on All comments
If : matches -> {{comment.author.displayName}} equals {{issue.assignee.displayName}}
THEN : edit issue fields -> {{#increment}}{{issue.Number of comments by Jira Assignee}}{{/}}
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.
I'm Martins from eazyBI support team.
You could explore the solution with pre-calculated field imported in the eazyBI app
https://community.eazybi.com/t/calculating-the-number-of-comments-by-specific-user/1788/2
Martins / eazyBI
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.