Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

Codez

GitHub Release GitHub Release Date GitHub Actions Workflow Status GitHub License

An AI Agent that operates Codex on GitHub Actions. By using this Action, you can invoke Codex from GitHub Issues or Pull Request comments to automate code changes.

Documentation

Full guides and reference docs are in the docs/ folder:

Quickstart

Below is a minimal workflow configuration to get started with Codez:

# .github/workflows/codez.yml
on: [issue_comment]

jobs:
  codez:
    runs-on: ubuntu-latest
    steps:
      - uses: yiweishen/codez@main
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          openai-api-key: ${{ secrets.OPENAI_API_KEY }}