The Starting Point of Automation
The Trigger is the “When” of your automation rule—the specific event that tells the system to start listening and evaluate the rule’s conditions. Luklak provides a variety of trigger types to cover nearly any business scenario, from automatic background processes to user-initiated actions. Understanding the different categories is the first step in building a powerful automation.1. Silent Triggers: The Automated Workforce
Silent Triggers run automatically in the background without any direct user interaction. They are the workhorses of your automation system, constantly listening for events to occur.Object Events
The most common type of trigger. The rule runs when an 🧊 Object
is created, updated, or its status changes.
Use Case: When a Field
on a 🧊 Support Ticket
is updated to Priority = URGENT
, trigger an alert. Or, when a new 🧊 Lead
is created, automatically assign it to a sales representative.
Scheduled
The rule runs based on a schedule you define (e.g., hourly, daily, weekly, monthly, or a custom cron expression).
Use Case: Every Friday at 5 PM, find all 🧊 Tasks
with a Status
of IN_PROGRESS
and send a summary report to the project manager.
Incoming Webhook
The rule is triggered when an external application sends a signal (a webhook) to a unique URL provided by Luklak.
Use Case: When a customer submits a form on your website (e.g., Typeform), it sends a webhook to Luklak to automatically create a new 🧊 Lead
Object.
2. Workflow Triggers: Process-Driven Automation
Workflow Triggers are a special type of rule that is directly embedded within an🧊 Object
’s Workflow
. The automation is inextricably linked to a specific process step.
- Trigger Event: The rule executes when a user successfully transitions an
🧊 Object
into a specific Status. - Use Case: When a
🧊 Candidate
Object is moved to theHIRED
status, trigger a series of actions to create an onboarding checklist and notify the IT department. - Note: While you can use a Silent Trigger for “Status Change,” a Workflow Trigger is often better for core process actions because the logic is configured directly on the visual workflow canvas, making it easier to manage.
3. Object Actions: User-Initiated Automation
Object Actions allow you to empower your users by giving them “buttons” to run automations manually. These actions appear as menu items on an🧊 Object
’s toolbar.
- Trigger Event: The rule executes when a user clicks the action button on a specific
🧊 Object
. - Key Feature: You can control the visibility of each action button based on the
Object Type
, its currentStatus
, or the user’sRole
orGroup
. - Use Case: Add an “Escalate to Manager” button on
🧊 Support Tickets
. When clicked, an automation re-assigns the ticket and sends a high-priority message. This button can be configured to be visible only for tickets in anOPEN
status and hidden forCLOSED
ones.
Support Ticket
Object. They click the ’…’ menu, and a custom ‘Escalate to Manager’ button is visible. They click it, and the automation runs.]