Meeting triggers
Two triggers fire around a meeting on a connected calendar:- Meeting started — fires when a meeting begins. To deliver something before the call, set a minutes before offset (up to 1440 minutes / 24 hours) so it fires that far ahead of the scheduled start.
- Meeting ended — fires when a meeting finishes.
Scheduled trigger
The scheduled trigger runs a workflow on a recurring timer instead of on an event. Use it for digests, sweeps, and anything that should run at a set time rather than in reaction to something. Set:- Frequency — hourly, daily, weekdays, weekly, monthly, or a custom interval.
- Time — the time of day it runs (for daily, weekly, and monthly).
- Day for weekly, or days of the month for monthly.
- Interval — for a custom frequency, run every N minutes or hours.
- Timezone — the timezone the schedule runs in.
Salesforce triggers
Two triggers start a workflow directly from Salesforce, so the follow-up work happens on the event rather than on a timer:- Salesforce record created — fires when a new record of an object you choose is created. It begins once that object has synced at least once.
- Salesforce field changed — fires when a specific field on an object you’re watching changes value. It fires inline as the record syncs, so pick a field Clearskies is actively syncing.
How to choose a trigger
- In the workflow builder, add a trigger and pick its type.
- For a meeting trigger, add a filter as the first step and set a minutes before offset if you want it to fire ahead of the meeting.
- For a scheduled trigger, set the frequency, time, day, and timezone.
- For a Salesforce trigger, pick the object to watch — and, for field changed, the field.
- Build the rest of the workflow, referencing the trigger’s data in later steps.
In practice
- Meeting ended on external calls → summarize and post the recap to the account’s Slack channel.
- Meeting started, 15 minutes before → DM the owner a pre-call brief.
- Scheduled, Monday 9:00 AM → find open deals and send each owner a nudge.
- Salesforce field changed on Opportunity Stage to Closed Won → draft the kickoff email and create the onboarding record.
Related
- Find & filter records — pull data mid-run and gate whether a run continues
- Loops — act on every record in a set the trigger or a find step produced
- Actions — what the workflow does once it fires