Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AtnNn/6371fa0bebded6bea1f1f5dfc65e1ed8 to your computer and use it in GitHub Desktop.
Save AtnNn/6371fa0bebded6bea1f1f5dfc65e1ed8 to your computer and use it in GitHub Desktop.
Show all outdated diff comments on a pull request in Github -- Simulate clicking on all links that say "Show outdated"
$$('.btn-link.text-gray').forEach(function(item){
if(item.innerHTML.match(/Show outdated/)){
item.dispatchEvent(new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true
}));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment