You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I'd like to get a list of tickets that I worked on (possibly constrained by date). And when I say worked on, I mean anything having to do with a ticket - adding a comment, moving it to the next stage in the workflow, changing the story points, whatever.
And I'd like the tickets sorted by the date that I affected the ticket. Is this possible?
You'd have to construct the JQL according to your need.
For e.g. the following would return all the issue:
- you commented
- changed status of
- was ever the assignee
- was ever the reporter
- or ever added a worklog on an issue.
issueFunction in commented('by tbas') OR status changed BY tbas OR assignee was in (tbas) OR reporter was in (tbas) OR worklogAuthor in (tbas)
Your answer lead to towards the answer:
assignee was in (currentuser()) OR status changed by currentuser() OR reporter was in (currentuser()) ORDER BY updated DESC
Jira didn't know anything about `worklogAuthor` and it complained that ScriptRunner wasn't licensed when I attempted to run `
issueFunction in commented('by tbas')
`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
worklogAuthor should work since that field is provided by default in JIRA.
worklogAuthor in (currentUser())
and to get issues which a user has commented on is not a default JIRA functionality, you'd have to access it via ScriptRunner plugin.
You can generate a trail license and try it out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is really too bad this is a query and not an interface like in TFS
Using Jira should not be extra work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The answer given by Robert 'assignee was in (currentuser()) OR status changed by currentuser() OR reporter was in (currentuser()) ORDER BY updated DESC' worked perfect for me. This is what i expected and i got the complete report which i use for every month status. Thank you Robert
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.