Last active
August 29, 2015 14:18
-
-
Save brentertz/a5423beaf45787c1a01e to your computer and use it in GitHub Desktop.
PR Template Bookmarklet
This file contains 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
javascript:(function() { | |
var e = document.getElementById('pull_request_body'); | |
if (e) { | |
if (e.value) { | |
e.value += '\n\n'; | |
} | |
e.value += ' | |
#### What does this PR do?\n\n | |
#### Any background context you want to provide?\n\n | |
#### Where should the reviewer start?\n\n | |
#### How should this be manually tested?\n\n | |
#### What are the relevant tickets?\n\n | |
#### Screenshots, if appropriate. (http://recordit.co/)\n\n | |
#### How does this PR make you feel? (http://giphy.com/categories/emotions/)\n\n | |
'; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment