Skip to content

Instantly share code, notes, and snippets.

@MarcoWorms
Created May 24, 2017 19:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save MarcoWorms/7ef61fa050b592034bc9e3f3b0a5aac9 to your computer and use it in GitHub Desktop.
Save MarcoWorms/7ef61fa050b592034bc9e3f3b0a5aac9 to your computer and use it in GitHub Desktop.
window.setInterval(
() => document.querySelectorAll('.jobs-item.failed')
.forEach(build => {
console.log('Restarting build', build.querySelector('.job-env').textContent.trim(), (new Date()).toString())
build.querySelector('.action-button--restart').click()
}),
5000
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment