Last active
August 29, 2015 14:22
-
-
Save johnathan-sewell/415624acbbb1f2d4daba to your computer and use it in GitHub Desktop.
Jira Story Subtasks
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
//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