Delete tag after Successful action

Hello,
There is an option of assigning a tag after Success,
but I was wondering if there is any option of removing a tag after Success ?

Screenshot 2020-07-13 at 08.20.45|375x500

Thanks!

1 Like

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

Thank you very much !