rejento
automations

"When X happens, do Y" — automate the boring pipeline moves.

Pipeline automations let you encode the rules you'd enforce manually — "if a candidate scores 85%+ on any open job, auto-shortlist them" or "if a candidate has sat in the pipeline 7+ days with no outbound message, notify the team." Every fire is audited and deduped per-(rule, candidate) pair so you never get duplicate actions.

How a rule is shaped

Two parts. Trigger picks the candidates the rule cares about. Actionsays what to do with them. Today's catalogue:

Triggers

Actions

Walk-through: auto-shortlist strong matches

  1. Open /automations → click + New rule.
  2. Name it something memorable: "Auto-shortlist strong matches".
  3. Trigger: score_threshold, min score 85.
  4. Action: set_statusshortlisted.
  5. Save. The 5-min scheduler tick will start evaluating it.

Dedupe + safety caps

Every rule has a fireLog — an internal record of which (rule, candidate) pairs have already fired. The same rule will never re-fire on the same candidate twice. The log is capped at the last 500 entries; older fires roll off but are preserved in the /activity audit log.

Per-tick safety cap: 25 candidates per rule per evaluation. A misconfigured rule can't accidentally fan out thousands of status changes before you notice — worst case it burns through 25 every 5 minutes.

How to test a rule before it goes live

On the rule row, hit Run now. The engine evaluates every active rule (your fresh one included) and reports { rulesEvaluated, firesTotal }. Check /activity to see exactly which candidates were touched and what changed.

Pausing without deleting

Toggle the Pausebutton on the rule. The fireLog is preserved, so when you flip it back to active you don't re-fire on candidates that were already actioned.

Need help? Open the support assistant from the bell-icon in your workspace, or email support@rejento.com.