I have already created the query below but I am also trying to find tickets I have added labels and/or components. Is this possible?
issueFunction in commented("by XXXX") OR status changed by (XXXX) OR worklogAuthor = XXXX OR assignee was in (XXXX) OR reporter was in (XXXX) OR fixVersion changed by (XXXX) ORDER BY created ASC
what if an issues was assigned to 3 different people and if the task was completed by the last person it was assigned to you. on that time you will not get these issues. may be add this too
Yes, that is the issue I am running into. Many tickets I "touched" by adding labels/components and assigning but since I didn't make a comment and there was no status change, it is not captured in my query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are right. There are question to accomplish such from time to time in Community.
It is always "working towards the goal" but I think you are close to what you are looking for.
For the change in Assignees (Issues you assigned to a different individual) it think the following could work:
assignee changed by currentuser() after -8d
You can change the duration to look at as usual.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mykle,
Yes, you can do it by adding this to you query :
labels IS NOT Empty OR component IS NOT empty
Let me know if it helped,
Guilhem
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.