Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Created April 4, 2017 18:56
Show Gist options
  • Save celsofabri/ebecb070d72052d3e8027c3d51616dbf to your computer and use it in GitHub Desktop.
Save celsofabri/ebecb070d72052d3e8027c3d51616dbf to your computer and use it in GitHub Desktop.
Remove all comments from GitHub Pull Request
// Sometimes it's necessary to do a bit of clean-up
Array.prototype.forEach.call(document.querySelectorAll('.js-comment-delete button'), function(el, i) {
el.removeAttribute('data-confirm');
el.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment