Pregunta

How would I create a JIRA filter that lists all of the issues on which I've logged time? I can then apply this to the activity stream.

¿Fue útil?

Solución 2

If you have Script Runner installed, you can use the following query. It will show you the issues only where you have logged work in JIRA.

issueFunction in workLogged("after 2014/09/01 before 2015/01/30 by <USER_NAME>")

Where the dates can be set to the range of the week you want to query, and the USER_NAME can be your username.

Script Runner Documentation

Otros consejos

Use advance searching via JQL:

worklogAuthor = currentUser() 
                AND worklogDate >= "2016/12/01" 
                AND worklogDate <= "2016/12/31"

Using JQL you can do something like this and you won't need to update the filter every week.

    worklogAuthor = currentUser() 
AND worklogDate >= startOfWeek(-1w) 
AND worklogDate < startOfWeek()

Source for startOfWeek()

Plugins are your answer. Search the marketplace for "Timesheets" if you are using the built in JIRA work logging. Personally, I have had a lot of success with JIRA Timesheet Reports and Gadgets.

If you are still wanting a JQL plugin to give you back your results OR you are using JIRA cloud, have a look at JQL Pro, it appears to do what you need.

What worklogs are you using? Sadly, it is not possible with the JQL. You might get lucky if you are using some plugins such as Tempo as they might have some internal reports.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top