Skip to Content
Getting StartedQuickstart

Quickstart

Get up and running with TinyOps in 5 minutes.

Create your account

Sign up at tinyops.cc . No credit card required. You’ll be asked to name your organization during onboarding.

Connect an integration

Go to Settings → Integrations and connect at least one provider. GitHub and Slack are the most common starting pair.

See the integration guides for provider-specific setup instructions.

Create your first rule

Navigate to Rules → Create Rule and choose a template or start from scratch.

Every rule follows the same pattern: trigger → condition → action.

stale-pr-alert.yaml
name: stale-pr-alert trigger: type: schedule cron: "0 9 * * 1-5" condition: provider: github check: pr.age operator: gt value: 3 action: provider: slack method: send_message params: channel: "#engineering" message: "Stale PR alert: {{condition.result}} days old"

This rule checks every weekday at 9am for PRs older than 3 days and sends a Slack alert.

Test and enable

Click Test Run to verify the rule works with live data. Review the output, then toggle the rule to Live mode.

Use Shadow mode first to observe what a rule would do without taking action. Promote to Live once you’re confident.

What’s next