Skip to content

Instantly share code, notes, and snippets.

@allangrds
Created August 9, 2018 16:12
Show Gist options
  • Save allangrds/7495b525b1c2771db40efa6f1d93b900 to your computer and use it in GitHub Desktop.
Save allangrds/7495b525b1c2771db40efa6f1d93b900 to your computer and use it in GitHub Desktop.
setInterval(() => {
let buildStatus = document.getElementsByClassName('badge-label')[0];
let rebuildButton = document.getElementsByClassName('rebuild')[0];
if(buildStatus.innerText.toUpperCase() === 'FAILED') {
rebuildButton.click();
}
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment