can we add the logs associated to a Story or Work Item directly on the same csv? Or do you need to import it separately once the Story or Work Item is created in Jira?
See the "importing attachments" section in https://confluence.atlassian.com/adminjiraserver/importing-data-from-csv-938847533.html
Can you elaborate?
By logs you mean the logged work? If so, would you be refering to just the time value or a complete list of "date, logged time, activities performed"?
For the second, more complete option, I've done something similar in the past consisting of creating a SIL custom field that collected every time logged the subtasks of an issue (that's where I logged the time, not the main issue) , then I could add this field as a column in the search screen and export it as .csv no problem.
In case it is of any help, allow me to share this solution.
string[] tareas = {key, subtasks(key)}; number n = arraySize(tareas); number i = 0; date inicio = key.created; date fin = currentDate(); string[] WL; number a = 0; for(i=0;i<n;i=i+1){ if(getWorklogsForIssues(inicio, fin, tareas[i])!=""){ WL[a] = getWorklogsForIssues(inicio, fin, tareas[i]); a=a+1; } } return WL;
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.