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.
Full guides and reference docs are in the docs/ folder:
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 }}