Dear Team
i need to find users assigned to a task for 24 hours and not done any changes in the issue using JQL can anyone give me a suggision in Jira Data center
Not sure if I'm understanding correctly, but could you do:
As the thing is, if it hasn't had any changes, then the assignee hasn't been updated too.
Or are you looking for a particular task, and displaying all the users on that task that was assigned and not done anything for over 24 hours?
Hi thank you for your response
basically what am trying to do is
the users who is assigned before 24 hours and not updated anything in that task we need to send an escalation mail to them so am trying to do it with AFJ
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
so assigned before 24hours and updated before 24 hours
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unless I am mis-understanding, you don't need to worry about the assignee changing in the last 24 hours, since an assignee change would cause the issue to be updated (as Calvin stated)
Your query will just be updated <= -1d, which will return all work items that have NOT been updated in the last 24 hours. Then configure your email to be sent to the Assignee.
Since you'd probably not want to send an email for any unassigned issues, then I think Calvin's response makes the most sense (although I think you want to look for issues where the updated is less than one day ago, not more than one day ago): assignee is not empty and updated <= -1d
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.