The steps
- Start it when a form arrives. Add an arrival trigger that fires whenever a new submission comes in.
- Handle each submission on its own. If submissions can arrive in batches, split them so each one is handled separately.
- Decide the path. Add a Branch step: if the submission looks urgent (say, a chosen priority field or a keyword), send it down the “urgent” path; otherwise the “normal” path.
- Act on each path.
- Urgent → a step that notifies the team right away.
- Normal → a step that adds it to your tracking list or sheet.
Why a branch here
You already make this decision by hand every time a form comes in — “is this urgent?” The Branch step captures that one decision so the process makes it for you, the same way, every time.Make it yours
- Add more paths with Route if you sort into more than two buckets (sales, support, spam).
- Drop in a Filter earlier if some submissions should be ignored entirely.