I can't find how to bind to the date of the last comment from a specific user. All I found in automation was the task update date, but this doesn’t suit me. I would appreciate any help/advice.
Regardless of solving this symptom with automation, or other practices, please consider if there is a different root cause, leading to the question: why if help was asked for, the response was not used for several days?
For example, is the amount of work-in-progress (WIP) so high that developers took a while to respond, and so a tester moved on to other tasks? Or was the request communicated in a way that was not visible quickly? Or are the priorities shifting and so the request / response was less relevant? And so on...
Understanding the cause may help to solve the underlying problem, reduce the need for the reminders as the current work will be the focus of all involved, and so help remove delays to completion.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create automation rule - Trigger on Schedule basis on every hour daily and filter out those issues whose status is not equals Done and then compare the last comment difference if it is greater than 0 then it will add a comment.
{{now.diff(issue.comments.last.created).days.abs}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Muhammad Moazzam Hassan thanks a lot! Could you also tell me how to add a condition with the author of the comment? I tried something like this: "issue.comments.last.author.name = John.Doe but it doesn't work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you want to match any user then you can match via account ID, you have to fetch john accounts id then use smart value {{issue.comments.last.author.accountID}} equals then match it with account ID.
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.