Created
October 28, 2020 17:26
-
-
Save MrSquaare/f668f5a0ec59db5b35c879d53773cb63 to your computer and use it in GitHub Desktop.
Delete all labels of a GitHub repository
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
let windowConfirm = window.confirm | |
let selector = `form.js-delete-label` | |
window.confirm = function () { | |
return true | |
} | |
document.querySelectorAll(selector).forEach(deleteForm => { | |
let submitButton = deleteForm.querySelector(`button[type="submit"]`) | |
submitButton.click() | |
}) | |
window.confirm = windowConfirm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment