-
Notifications
You must be signed in to change notification settings - Fork 0
Setup Guide
Coding-Autopilot-System CI edited this page May 27, 2026
·
1 revision
- GitHub CLI (gh) installed and authenticated
- Access to the Coding-Autopilot-System org
- autopilot-core operator running with a self-hosted runner
gh workflow run demo-ci.yml -R Coding-Autopilot-System/autopilot-demo
This triggers demo-ci.yml which runs a simulated CI step on ubuntu-latest.
After the workflow completes, autopilot-create-issue.yml fires on workflow_run and may create an intake issue:
gh issue list -R Coding-Autopilot-System/autopilot-demo --label autofix --label queued
Once the issue is created, autopilot-core will pick it up on its next operator cycle:
gh pr list -R Coding-Autopilot-System/autopilot-demo
gh run list -R Coding-Autopilot-System/autopilot-core --workflow autopilot-operator.yml --limit 5
The intake workflow creates issues with these labels automatically:
- autofix: marks the issue for automated fix
- queued: marks the issue as ready for the operator
Create these labels if they do not exist:
gh label create autofix --color 0075ca -R Coding-Autopilot-System/autopilot-demo
gh label create queued --color e4e669 -R Coding-Autopilot-System/autopilot-demo