Skip to main content

Automation

Workflow automation and developer tools.


Overview

Automation services handle scheduled tasks, CI/CD, and integration workflows.


Services

ServicePurposeURL
n8nWorkflow automationn8n.ravenhelm.dev
GitLabSource control & CI/CDgitlab.ravenhelm.dev
HomepageService dashboarddashboard.ravenhelm.dev
n8n Workflow InventoryComplete workflow reference-

Key Workflows

See n8n Workflow Inventory for complete documentation.

Active Workflows

WorkflowPurposeTrigger
GitLab Pipeline → AlertingSlack alerts on failed pipelinesWebhook
Bifrost Echo ToolMCP test toolWebhook
Grocy Shopping SyncLow stock/expiring alertsEvery 30 min

GitLab Pipelines

PipelinePurpose
CI/CDBuild and test projects
RunnersSelf-hosted execution

Quick Commands

# Check automation services
for svc in n8n gitlab homepage; do
docker ps --filter "name=$svc" --format "{{.Names}}: {{.Status}}"
done

# List active n8n workflows
curl -s -H "X-N8N-API-KEY: $N8N_API_KEY" \
"https://n8n.ravenhelm.dev/api/v1/workflows" | \
jq '.data[] | select(.active) | {name, id}'