Skip to content

Instantly share code, notes, and snippets.

View ponchofiesta's full-sized avatar

Michael Richter ponchofiesta

View GitHub Profile
@ponchofiesta
ponchofiesta / bamboo_delete_plan_branch.js
Last active September 16, 2021 09:58
Delete Bamboo plan Branch
/*
This Code can delete a Bamboo plan branch via a web browser. See the minified version down below to be used as browser bookmark.
*/
(function(){
url = new URL(location.href)
params = new URLSearchParams(url.search)
if (!params.has('planKey')) {
alert('Browser is not on correct page.')
return
}