Deliver Workspace

Automations

Automations are trigger-based rules that run automatically when task events happen. Available on the Team plan and above.

How automations work

Every automation has three parts: a trigger (what fires the rule), optional conditions (filter which tasks it applies to), and one or more actions (what happens).

WHEN task.status_changed
AND status equals BLOCKED
THEN send_notification "Task blocked — needs attention"

Triggers

TriggerFires when
task.createdA new task is created in any project
task.status_changedA task's status field changes
task.assignedA task is assigned to a user
task.due_date_passedA task's due date passes without completion (daily cron)

Conditions

Conditions filter which tasks the automation applies to. You can combine multiple conditions.

FieldOperators
statusequals · not_equals
priorityequals · not_equals
sectionIdequals · not_equals
projectIdequals · not_equals
assigneeIdequals · not_equals · contains

Actions

ActionWhat it does
set_statusChange the task status to any valid status
set_priorityChange the task priority
assign_userAssign the task to a specific user
add_labelAdd a label to the task
send_notificationPush an in-app notification with a custom message
move_to_sectionMove the task to a different section

Default automations

When you create your first project, GrowthOS seeds three smart defaults (only once per org, won't overwrite existing rules):

AI Automation Builder

Don't want to configure triggers and actions manually? Describe the rule in plain English and GrowthOS generates the full automation config. See AI Features for details.