Add option to clear Flag when action is run

It would be great to have a toggle in the action setup to clear the flag from the draft when the action completes, similar to how it’s possible to add a tag when the action completes.

Request noted. You can do that now with script, if you have a need. Just end your action with this in a script step:

draft.flagged = false;
draft.update();
1 Like

That’ll due! Thanks!!