Created
December 1, 2016 21:03
-
-
Save dennishall1/ffedcb1ab630cda8b1318082e397085a to your computer and use it in GitHub Desktop.
Get a list of sprint story #s + titles -- convenient to copy/paste into planning poker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// inspect the dom to obtain the sprintId, and update it below | |
sprintId = 267; | |
stories = []; | |
$$('[data-sprint-id="' + sprintId + '"] .ghx-issue-content').forEach(function(item){ | |
stories.push([ | |
item.querySelector('.ghx-key').innerText, | |
item.querySelector('.ghx-summary').innerText | |
].join(' ')); | |
}); | |
console.log(stories.join('\n')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment