Getting Started
Quick Start
RunPilotAI connects to your GitHub repositories, captures CI/CD test results, and lets AI triage and fix failures automatically. Here is how to get started in 5 minutes.
1. Create an account
Sign up at runpilotai.com/signup. Verify your email to unlock all AI features.
2. Connect a repository
Go to Projects and click Connect Repository. Enter your GitHub URL, the default branch, and the workflow file name.
3. Add the GitHub Actions step
Add this step to your workflow after your test step to send results to RunPilotAI:
yaml
- name: Send results to RunPilotAI
if: always()
run: |
curl -s -X POST https://runpilotai.com/api/ingest/playwright \
-H "Content-Type: application/json" \
-H "x-api-key: ${{ secrets.RUNPILOT_API_KEY }}" \
-d @playwright-results.json4. Set environment variables
Add your ingestion key as a GitHub Actions secret:
bash
# In your GitHub repo → Settings → Secrets → Actions
RUNPILOT_API_KEY=rp_live_xxxxxxxxxxxx5. Run your first CI build
Push a commit or trigger your workflow manually. Within seconds, the run appears on your RunPilotAI dashboard with pass rates, failures, and AI triage options.