JIRA: find all my logged work for last week

让人想犯罪 __ 提交于 2019-12-03 09:32:46
Scorypto

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

Mahesha Kalpanie

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.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!