Few of my team members, changing status from To Do to Done without in progress status.
i would like to generate report/automation script whoever skipping the In progress status. anyone come across this kind of request.
Hi @Ramesh Krishnan , if your goal is to prevent this from happening you could edit the workflow to require progression thru In Progress.
With that said, to answer your question consider creating a JQL filter something like below.
Project = xxx and status = done and status WAS NOT "In Progress"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @Ramesh Krishnan
It's possible. You can check, if issue was in "In Progress" status by JQL.
Crate Automation rule, that will trigger when issue is transitioned to "Done" status, and check, if issue satisfies to next JQL:
status WAS NOT "In Progress"
If yes - then make something.
Or, if you want to make report, just use next query to select resolved issues, which were not in "In Progress"
status = Done AND status WAS NOT "In Progress"
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.