Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save supernovaplus/835ce4888938314e202fa0f39c2ca19e to your computer and use it in GitHub Desktop.
Save supernovaplus/835ce4888938314e202fa0f39c2ca19e to your computer and use it in GitHub Desktop.
function DeleteAllTriggers() {
var allTriggers = ScriptApp.getProjectTriggers();
if(allTriggers.length<1)return Logger.log("list is empty");
Logger.log("Deleted => "+allTriggers.length);
for (var i = 0; i < allTriggers.length; i++) {
ScriptApp.deleteTrigger(allTriggers[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment