Automations (Workflows)
Workflows allow you to create automatic processes for your server - no programming skills required.
What are Workflows?
Workflows are visual automations consisting of triggers, conditions, and actions. They are created in the workflow editor using drag & drop. A workflow starts with a trigger and then executes one or more actions.
Triggers
Triggers determine when a workflow starts. Available triggers:
Actions
Actions are the steps the workflow executes. Available actions:
Conditions
Conditions allow you to branch the flow based on values.
Examples
Daily Backup
Automatically creates a backup every day at 4 AM. Trigger: Schedule (0 4 * * *), Action: Create Backup.
Discord Notification on Server Start
Sends a Discord message when the server starts. Trigger: Server Start, Action: Discord Webhook with message "Server is online!".
Automatic Restart
Restarts the server every day at 5 AM. Trigger: Schedule (0 5 * * *), Actions: Command "say Server restarting in 5 minutes", Wait (5 minutes), Restart Server.