Skip to content

Instantly share code, notes, and snippets.

@pmargreff
Created November 4, 2020 18:16
Show Gist options
  • Save pmargreff/2f7c7d6f0cf8a484051f5c759de4cbd3 to your computer and use it in GitHub Desktop.
Save pmargreff/2f7c7d6f0cf8a484051f5c759de4cbd3 to your computer and use it in GitHub Desktop.
copy-jira-tasks-by-sprint-id.js
var list = [];
$('[data-sprint-id=<REPLACE HERE>] .ghx-summary .ghx-inner').each((e, node)=>{ list.push(node.innerHTML.replace(/"/g, "'"))})
list.join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment