Skip to content

Instantly share code, notes, and snippets.

@dennishall1
Last active June 14, 2018 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dennishall1/301ef460e9f9b237ffd849b6c85f1f61 to your computer and use it in GitHub Desktop.
Save dennishall1/301ef460e9f9b237ffd849b6c85f1f61 to your computer and use it in GitHub Desktop.
go (lang) pipelines - browser alert when build is done
timer = setInterval(function(){
if(!document.querySelector('a.pipeline_stage[href*="vans-test-6"]').classList.contains('building')){
clearInterval(timer);
alert('done');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment