TrigRun
CLI

CLI Usage

Common TrigRun CLI commands for jobs, executions, secrets, and notifications.

Authentication

trigrun login -e [email protected] -p your-secure-password
trigrun whoami

Jobs

trigrun jobs list
trigrun jobs get JOB_ID
trigrun jobs create --name health-check --url https://httpbin.org/post --method POST --kind recurring --every 5
trigrun jobs pause JOB_ID
trigrun jobs resume JOB_ID
trigrun jobs run JOB_ID
trigrun jobs delete JOB_ID

Executions

trigrun executions list
trigrun executions list --job JOB_ID
trigrun executions get EXECUTION_ID
trigrun executions replay EXECUTION_ID

Secrets

trigrun secrets list
trigrun secrets create --name api-key --value "sk_live_..."
trigrun secrets delete SECRET_ID

Notification channels and rules

trigrun channels list
trigrun channels create --name ops --type webhook --url https://example.com/hook
trigrun rules list JOB_ID
trigrun rules add JOB_ID --channel CHANNEL_ID --event on_failure
trigrun rules remove JOB_ID RULE_ID

Deliveries

trigrun deliveries list
trigrun deliveries list --status failed
trigrun deliveries retry DELIVERY_ID

Get command help

trigrun --help
trigrun jobs --help
trigrun executions --help

On this page