Skip to content

Instantly share code, notes, and snippets.

@johnathan-sewell
Last active August 29, 2015 14:22
Show Gist options
  • Save johnathan-sewell/415624acbbb1f2d4daba to your computer and use it in GitHub Desktop.
Save johnathan-sewell/415624acbbb1f2d4daba to your computer and use it in GitHub Desktop.
Jira Story Subtasks
//open "Quick Sub Tasks" dialog
document.getElementById('subtasks-link-link').click();
//slam in the template
var textArea = document.getElementById('tasks-code');
textArea.value = '- FE Implementation / issueType:"FE Sub-Task"' + '\u000A' +
'- FE PR / issueType:"FE Code Review"' + '\u000A' +
'- BE Implemenation / issueType:"BE Sub-Task"' + '\u000A' +
'- run db/schema changes past Fed / issueType:"Technical task"' + '\u000A' +
'- verify deploy instructions / issueType:"Technical task"' + '\u000A' +
'- add feature to Sprint Outcomes to demo / issueType:"Technical task"' + '\u000A' +
'- BE PR / issueType:"BE Code Review"' + '\u000A' +
'- UX Review on team server / issueType:"UX Review"' + '\u000A' +
'- QA on team server/ issueType:"QA Sub Task"';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment