Created
May 13, 2016 12:34
-
-
Save albinekb/adb85d1005e4dffe0494a0f4dc29b3b2 to your computer and use it in GitHub Desktop.
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 run () { | |
const updateButton = document.querySelector('.branch-action-btn button') | |
const mergeButton = document.querySelector('.merge-message button') | |
if (mergeButton.disabled && !updatebutton.disabled) { | |
updateButton.click() | |
} else if (!mergeButton.disabled) { | |
mergeButton.click() | |
} | |
} | |
setInterval(run(), 5000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment