Delete tag after Successful action

There’s not a similar convenience feature to remove tags, but it can be done with a quick script at the end of your action, try this in a script step at the end of the action, editing the “TAG-NAME” placeholder:

draft.removeTag("TAG-NAME");
draft.update();
2 Likes