Skip to content

Setup Guide

Coding-Autopilot-System CI edited this page May 27, 2026 · 1 revision

Setup Guide

Prerequisites

  • GitHub org admin access to Coding-Autopilot-System
  • Self-hosted Windows runner with git, gh CLI, codex, and OPENAI_API_KEY
  • Org-level Actions variable: ORG = Coding-Autopilot-System

Installation

1. Configure org variable

In GitHub org Settings -> Actions -> Variables, set: ORG = Coding-Autopilot-System

2. Configure secrets

In autopilot-core repository Settings -> Secrets: OPENAI_API_KEY = your OpenAI API key GITHUB_TOKEN is automatically provided by GitHub Actions.

3. Register self-hosted runner

Register a Windows runner: Settings -> Actions -> Runners -> New self-hosted runner. Select: Windows, x64.

4. Install intake workflow into target repos

Option A - Manual: Copy .github/workflows/autopilot-create-issue.yml into each target repo. Option B - Automated: Trigger autopilot-org-installer.yml with workflow_dispatch.

5. Validate

gh workflow run autopilot-operator.yml -R Coding-Autopilot-System/autopilot-core
gh run list -R Coding-Autopilot-System/autopilot-core --workflow autopilot-operator.yml --limit 1

Labels required in target repos

  • autofix: marks the issue as a candidate for automated fix
  • queued: marks the issue as ready for the operator to pick up

Issues with risky or needs-design labels are skipped.

Clone this wiki locally