Skip to content

Instantly share code, notes, and snippets.

@szympajka
Created March 7, 2025 12:07
Show Gist options
  • Save szympajka/6fce11647bb01b3d082f449157e38d8b to your computer and use it in GitHub Desktop.
Save szympajka/6fce11647bb01b3d082f449157e38d8b to your computer and use it in GitHub Desktop.
Undo viewed files on Github PR
for (let k of [...document.querySelectorAll('#files form[action*="file_review"] label[class*="js-reviewed-file"')]) {
k.click();
await new Promise(resolve => setTimeout(resolve, 200))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment