ActionableAgile / jira-to-analytics

This code extracts data from Jira based on a yaml config file, and outputs a properly formatted CSV that can be read by the ActionableAgile Analytics tool.
https://www.actionableagile.com
GNU General Public License v2.0
57 stars 36 forks source link

Case insensitive status names #52

Closed marcusoftnet closed 6 years ago

marcusoftnet commented 6 years ago

Hi,

thanks for this great tool. Being using quite a lot to get teams up and running on ActionableAgile.

However, one problem I had was that I got the statuses, for the workflow mapping section of the config file, in all upper case. This ruined the map.get(key) and map.has(key) calls in populateStages.

I have added a new version that compares keys, case-insensitively, as an extra check in populateStages, after the original case-sensetive map-methods. Have not seen problems in my tests

johnrjj commented 6 years ago

Looks good! Running some regression tests and will check back in.

marcusoftnet commented 6 years ago

BAH! I messed this up and created #56 to replace it.

Sorry about that.