Hello,
I would like to find the list of issues that I updated or commented during a period of time.
I can filter the list of issues modified using the "updated" field, but I would like to find only the issues that I updated.
Do you know how to do this filter?
thank you in advance!
Regards
Andres!
Good point, Payne.
If this one worked for you, then this answer would be the best one.
Ignacio, I think I'ill use your option, because Payne's suggestion don't seems to work in my JIRA version!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Andres,
Try this in your JQL:
"Issue Participants" in (currentUser())
-Payne
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Payne,
In the JIRA which I'm working on I don't have the field "Issue Participants".
When I start writting issue I have the follwing options in my JIRA query
- Issue
- Issue.property
- IssueFunction
- IssueKey
- IssueType
I think this can be caused by the JIRA version.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Bummer; that "field" may be part of one of our add-ons.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Natively, you can just target some fields that support the CHANGED operator:
Assignee, Fix Version, Priority, Reporter, Resolution, and Status fields only.
In example, you may add something like this to you filter:
status changed by currentUser() after startOfMonth(-1) before startOfMonth()
A similar filter can be obtained for each of those fields.
Hope it helps.
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.
till now, I could do this search
project in (project1, project2) and updated >= -31d and watcher = currentUser()
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.