Skip to content

Instantly share code, notes, and snippets.

@zhmurko
Last active April 26, 2016 06:00
Show Gist options
  • Save zhmurko/009a4e7140bfd504cd07994d1b83945f to your computer and use it in GitHub Desktop.
Save zhmurko/009a4e7140bfd504cd07994d1b83945f to your computer and use it in GitHub Desktop.
clear Jenkins Changelog
var li = document.querySelectorAll("li");
var pattern = /(environment pin for|jenkins backup of chef-server|jenkins version bump)/;
for (var i=0; i<li.length; i++){
if (li[i].textContent.match(pattern)) {
li[i].remove()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment