You can use JMWE with the following on some kind of event or schedule to delete all of the worklogs on an issue
{% for id in issue | worklog | field("id") %}
{{ "/rest/api/3/issue/:issue/worklog/:logID" | callJira(verb="Delete",params={"issue":issue.key,"logID":id}) | dump(2)}}
{% endfor %}
What if I only wanted to delete worklog entries that are more than 30 days old and only for all issues that are resolved (Done)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello can you help me to use jmwe to delete worklogs only logged by a certain user? thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
At the first write a JQL :
project="" and status= closed and timespent is not empty
then in the right above you see tools and select it and in bulk change, select edit issues then in the edit, delete timespent field and save it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.