Skip to content

Instantly share code, notes, and snippets.

@moomdate
Last active February 15, 2021 02:23
Show Gist options
  • Save moomdate/4de5d6c39c418d5d5e974b55145f0825 to your computer and use it in GitHub Desktop.
Save moomdate/4de5d6c39c418d5d5e974b55145f0825 to your computer and use it in GitHub Desktop.
function deleteAllTrigger() {
var triggers = ScriptApp.getProjectTriggers();
for (var i = 0; i < triggers.length; i++) {
ScriptApp.deleteTrigger(triggers[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment