I have an action that works fine but it doesn't run on more than 1 item at a time

I have an action that works like a charm but it only runs 1 item as a time, is there way that I can select an entire set of items and run the action?

Here’s the action draft.content = draft.content.replace(/{{c.::(.*?)}}/,"\n\n$1"); draft.update();

Thanks for any help guys

You can run an action as a batch operation on multiple drafts.

Thanks it works like a charm !!!