Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

JQL query needed to filter out 'Done' tasks on the basis of who marked it as resolved

Edited

Hello.

I am in desperate need of a JQL query that could help me filter out the bugs that have been marked as DONE/RESOLVED but not by the QA.

We have some flaws in the bug workflow thus some developers are able to close the ticket without my knowledge which is impacting my quality of work in a negative way.

I am the only QA and want a JQL that helps me filter out DONE issues that have not been marked done by <My name>.

Such bugs have been assigned back to me so its difficult for me to open 1000+ bugs one by one to check if it was closed by me.

Kindly help me create a JQL.

Thanks!

2 answers

2 accepted

2 votes
Answer accepted
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 18, 2023

Hi @Parul Rawat 

You note you are the only person doing QA work and there are 1000+ bugs to manage.  I respectfully suggest having a conversation with your leaders and team about the situation as that seems unsustainably.

Back to your question...

How many other people are on the team who could be transitioning the issues?

If there are not too many, you could use JQL and the CHANGED operator to identify who is making the changes: https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#CHANGED

For example, 

project = yourProjectName
AND (
status CHANGED BY userName1 TO Done
OR status CHANGED BY userName2 TO Done
)

Where userName1 and userName2 are the other team members.

Kind regards,
Bill

Hi.

Thank you so much for this suggestion.

I tried it out with the usernames but it didn't work that way for me so I tried it with user ids and it did the job.

example : 

project = "Projectname" AND ( status CHANGED BY user_id TO Done ) ORDER BY created DESC

So quick and easy.

Thank you so much!

PS: Yes, I've already had a word with my team leads and they'll be handling the matter now. Thank you for the concern!

Like Bill Sheboy likes this
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 19, 2023

I am glad to learn that helped.  After the changes a few years back to user information, I believe that most JQL operations now require using the account ID values.

1 vote
Answer accepted
Sanjog Sigdel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 17, 2023

Hello @Parul Rawat   Welcome to the community.

I checked the JQL and columns. Currently there are only Approvers and Approvers Group but I found no assignee under Approvers.

But there is an workaround which you should do via automation:

  1. Create a Custom field:- Approved By.
  2. Make it available to all projects.
  3. Create a Automation
    1. Which Assigns the one who accepted the ticket in the Approved By Column
  4. Then in your JQL you can get the Approved By column and also the person who approves the ticket.

Please try the automation and let me know when you have issue while implementing this.

This is genius! Thank you so much for this suggestion. I'll be working on it and let you know once I achieve the above solution.

Thanks again!

Like Sanjog Sigdel likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events