Last active
October 18, 2024 01:40
-
-
Save jazeee/475da2777bb4af4643b132c04958a4f8 to your computer and use it in GitHub Desktop.
Go through each step in a Github code review
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function markGithubFileViewed() { | |
getFirstSelect = () => $('input[type="checkbox"].js-reviewed-checkbox:not([checked])'); | |
let firstMatchingElement = getFirstSelect(); | |
firstMatchingElement.scrollIntoView(); | |
setTimeout(() => firstMatchingElement.click(), /*Time to Read the code*/10); | |
} | |
markGithubFileViewed(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Chrome debugger for github, can use something like this to go through each file in a PR: