Is there a way to achieve auto time logging using this add-on? I want to automate time logging and tracking such that a “timer” starts when an issue transitions to “In Progress” and stops when it transitions to “Done”. At the end of every month, I can then run time reports for management.
This is a pretty advanced usage but it can be done with Automation for Jira.
It is possible to do this using 2 rules. The first rule stores the first date on the original transition and then the second rule calculates the time difference and logs the work on the second transition.
Your first rule would like:
{{#now}}toMinutes{{/}}
The second rule would like:
{ "update": { "worklog" : [ { "add": { "timeSpent" : "{{#=}}{{#now}}toMinutes{{/}} - {{issue.properties.timestamp_in_progress}}{{/}}m" } } ] } }
This will add how many minutes elapsed between the 2 transitions.
Here's screenshots of the 2 rules:
Hi @andreas,
Thanks for detailed description of the rules. But it seems that time is not logged after first transition occurred, and we're seeing "No time logged" on issue page.
Are these rules only calculating time after final transition to "Done"?
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.
It might be easier to use Clockwork for automated time tracking as it does not require writing rules manually. It also logs time as a real user.
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.