Is it possible with Jira Automation (Cloud) to log time on Epic based on total spend time in Trigger issue.
Hi @Florian Warncke -- Welcome to the Atlassian Community!
Yes, you should be able to do that. The technique I found was to sum up the trigger issue's time spent as seconds, and then convert it to minutes. For example:
{
"update": {
"worklog" : [
{ "add": {
"timeSpent" : "{{#=}}{{triggerIssue.worklog.timeSpentSeconds.sum}} / 60 {{/}}m"
}
}
]
}
}
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.