Skip to content

Instantly share code, notes, and snippets.

@mavimo
Last active December 6, 2017 08:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mavimo/ecd2c345805b9d07b2d931cf051973be to your computer and use it in GitHub Desktop.
Save mavimo/ecd2c345805b9d07b2d931cf051973be to your computer and use it in GitHub Desktop.
Delete author github comments on PR
const AUTHOR_NAME = 'mavimo';
Array.prototype.forEach.call(document.querySelectorAll('.review-comment'), function (el, i) {
if (el.querySelector('.author').innerHTML == AUTHOR_NAME && el.querySelector('p sub') !== null && el.querySelector('p sub').innerHTML.startsWith('reported by')) {
el.querySelector('.js-comment-delete button').removeAttribute('data-confirm');
el.querySelector('.js-comment-delete button').click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment