Skip to content

Instantly share code, notes, and snippets.

@brentertz
Last active August 29, 2015 14:18
Show Gist options
  • Save brentertz/a5423beaf45787c1a01e to your computer and use it in GitHub Desktop.
Save brentertz/a5423beaf45787c1a01e to your computer and use it in GitHub Desktop.
PR Template Bookmarklet
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