Skip to content

Instantly share code, notes, and snippets.

@contolini
Last active August 29, 2015 14:21
Show Gist options
  • Save contolini/b825da061e04415d80c1 to your computer and use it in GitHub Desktop.
Save contolini/b825da061e04415d80c1 to your computer and use it in GitHub Desktop.
New PR bookmarklet
javascript:!function(){var a=document.getElementById("pull_request_body");a&&(a.value+="Short description explaining the high-level reason for the pull request\n\n## Additions\n\n- List of additions made\n- To the project\n- Within this PR\n\n## Removals\n\n- List of removals made\n- To the project\n- Within this PR\n\n## Changes\n\n- List of changes made\n- To the project\n- Within this PR\n\n## Testing\n\n- List of site urls\n- Or actions to take\n- To test the changes made\n\n## Review\n\n- @user\n- @user\n- @user\n\n## Preview\n\nInclude any screenshots that will make reviewing/testing easier\n\n[Preview this PR without the whitespace changes](?w=0)\n\n## Notes\n\n- List of notes about the changes that might be necessary\n- For the reviewer to know ahead of time or of related Github issues\n- Ex. Known issues or items outside the scope of the review\n- Ex. Fixes #100\n")}();
javascript: (function() {
var e = document.getElementById('pull_request_body');
if (e) {
e.value +=
'Short description explaining the high-level reason for the pull request\n\n' +
'## Additions\n\n' +
'- List of additions made\n' +
'- To the project\n' +
'- Within this PR\n\n' +
'## Removals\n\n' +
'- List of removals made\n' +
'- To the project\n' +
'- Within this PR\n\n' +
'## Changes\n\n' +
'- List of changes made\n' +
'- To the project\n' +
'- Within this PR\n\n' +
'## Testing\n\n' +
'- List of site urls\n' +
'- Or actions to take\n' +
'- To test the changes made\n\n' +
'## Review\n\n' +
'- @user\n' +
'- @user\n' +
'- @user\n\n' +
'## Preview\n\n' +
'Include any screenshots that will make reviewing/testing easier\n\n' +
'[Preview this PR without the whitespace changes](?w=0)\n\n' +
'## Notes\n\n' +
'- List of notes about the changes that might be necessary\n' +
'- For the reviewer to know ahead of time or of related Github issues\n' +
'- Ex. Known issues or items outside the scope of the review\n' +
'- Ex. Fixes #100\n'
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment