Add OpenCode PR review workflow #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: OpenCode PR Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| review: | |
| name: AI Code Review | |
| if: github.event.pull_request.draft == false | |
| runs-on: [self-hosted, builder] | |
| permissions: | |
| id-token: write | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Prepare OpenCode cache paths | |
| run: | | |
| echo "OPENCODE_INSTALL_DIR=${RUNNER_TOOL_CACHE:-$HOME/.cache}/opencode/bin" >> "$GITHUB_ENV" | |
| echo "XDG_CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache}" >> "$GITHUB_ENV" | |
| echo "${RUNNER_TOOL_CACHE:-$HOME/.cache}/opencode/bin" >> "$GITHUB_PATH" | |
| - name: Install OpenCode if needed | |
| shell: bash | |
| run: bash ./.github/scripts/install-opencode.sh | |
| - name: Run OpenCode Review | |
| env: | |
| MODEL: zhipuai-coding-plan/glm-5 | |
| PROMPT: | | |
| Review this pull request (read-only mode, DO NOT modify any code): | |
| Please check: | |
| - Code quality issues | |
| - Potential bugs or logic errors | |
| - Code style consistency | |
| - Security concerns | |
| - Performance issues | |
| - Suggest improvements | |
| Please respond in Chinese. DO NOT modify any code, only provide review comments. | |
| USE_GITHUB_TOKEN: "true" | |
| ZHIPU_API_KEY: ${{ secrets.ZHIPU_API_KEY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: opencode github run |