In attempting to see how much churn is happening, we want to look at the number of times a fix version is updated on a story or epic. How do i count the changes of a field's value?
We import the PI Name from JIRA Align into JIRA on a JIRA Epic I'd like to know how many times there were updates to these fields to show me how many times we're shifting work.
What's the best way to report on this? I was thinking of counting the number of changes to a field value.
Hello Margaret,
Consider a scripting solution as found on the Atlassian Marketplace. In Power Scripts, use the fieldHistory() routine. For example:
string [] history = fieldHistory(key, "Fix Version");
number changeCount = size(history) / 2;
runnerLog(changeCount);
Due to Confluence Cloud security features, you may need to open the documentation posted in incognito mode or by logging out of Confluence.
Please note that I am a product engineer for Power Scripts and that I work for Anova Apps, an Appfire company.
Regards,
Hyrum
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.