Last active
April 26, 2016 06:00
-
-
Save zhmurko/009a4e7140bfd504cd07994d1b83945f to your computer and use it in GitHub Desktop.
clear Jenkins Changelog
This file contains hidden or 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
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