Two types of automations
Chevre supports two distinct automation models, each suited to different use cases. Event-based automations fire in response to something happening inside Chevre — a task is marked complete, a form is submitted, a member joins a project, or any other workspace event. These are ideal for real-time reactions to activity. Scheduled automations run on a recurring cron schedule — every morning at 8 AM, every Friday at 5 PM, the first of every month. Use them for digests, reports, clean-up jobs, or any action that should happen at a predictable cadence regardless of user activity.Creating an automation
- Event-Based
- Scheduled
1
Open the Automations page
In the left sidebar, click Automations. Then click + New Automation in the top-right corner and select Event-Based when prompted to choose a type.
2
Name your automation
Give your automation a descriptive name — for example,
Notify team on task completion. Click Continue.3
Choose a trigger event
Select the event that should start the automation. Available trigger events include things like Task Completed, Form Submitted, Member Added, and Project Archived. Click the event to select it, then click Next.
4
Add conditions (optional)
Conditions let you filter when the automation fires. Click + Add Condition to add a rule — for example, only fire when
task.priority is High. You can stack multiple conditions using AND (all must be true) or OR (at least one must be true) logic. Skip this step if you want the automation to fire on every matching event.5
Configure actions
Click + Add Action and select the action you want to run. Configure any required fields (for example, the Slack channel or email recipient). Add as many actions as you need — they execute in sequence, top to bottom.
6
Save and enable
Click Save. Toggle the automation to Enabled to make it live. You can disable it at any time from the Automations list without deleting it.
Conditions
Conditions give you precise control over when an automation fires. Each condition compares a field value against a target using an operator.
Group multiple conditions with AND to require all of them to be true, or OR to fire when any one of them is true. You can mix AND/OR groups for more complex logic.
Available actions
Every automation can execute one or more of the following action types. Actions run sequentially in the order you arrange them.Viewing automation run history
To review past runs for an automation:- Navigate to Automations in the left sidebar.
- Click the name of the automation you want to inspect.
- Select the Runs tab.
Enabling and disabling automations
You can toggle any automation on or off without deleting it. From the Automations list, click the toggle in the Status column next to the automation. Disabled automations will not fire, but their configuration and run history are fully preserved. Re-enable them at any time.Managing automations via the API
You can list, create, and inspect automation run history programmatically using the Chevre REST API — useful for scripted setup, deployment pipelines, or building your own monitoring dashboards. List all automations in your workspaceCron expression quick reference
Every day at midnight
Every day at midnight
Every weekday at 9 AM
Every weekday at 9 AM
1-5 range covers Monday (1) to Friday (5).Every Monday at 8 AM (weekly digest)
Every Monday at 8 AM (weekly digest)
First day of every month at 6 AM
First day of every month at 6 AM
Every hour
Every hour
Every 15 minutes
Every 15 minutes