Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created November 21, 2019 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/234e61c2e0b4c6a6f2b426df9b4ae0a6 to your computer and use it in GitHub Desktop.
Save iaindooley/234e61c2e0b4c6a6f2b426df9b4ae0a6 to your computer and use it in GitHub Desktop.
Remove all green labels
function removeAllGreenLabels(notification)
{
new Notification(notification).movedCard("Done").labels().each(function(label)
{
if(label.color.toLowerCase() == "green")
{
label.card().removeLabel(label);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment