Snippets

Learning.com Bookmarklets: Bamboo Branch Plan Cleanup

Created by Will Wolff-Myren
1
2
3
4
5
6
7
8
9
javascript: (function() { 
	if (document.querySelector(".plan-branch-lozenge").textContent !== "Default branch") {
		document.querySelector(".plan-delete-link").click(); 
		setTimeout(() => { document.querySelector(".button-panel-submit-button").click(); }, 250);
		setTimeout(() => { window.close(); }, 400);
	} else {
		alert("This is the master branch!");
	}
})();
javascript:(function() { document.querySelectorAll("a[id^=editBuild]").forEach(e => window.open(e.href)); })();

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.