What I want to achieve:
Hi, @kana.okuma
You can add scheduled automation rule, that will look for issues in specific status and without update for 10 days, and add escalation comments.
JQL query will look like:
issuetype = Task AND status = Review AND updated <= startOfDay(-10)
upd.
I missed the second requirement. In this case, you can use the same trigger as I mentioned earlier, but add an IF/ELSE condition in rule body. Check the author of the last comment using this smart value: {{issue.comments.last.author}}
.
If it's the same user who is performing the action, transition the issue to Done .
If it's a different user, then add a comment instead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.