fix: 增加插件 V3t 运行时兼容门禁 #908
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: PR-Agent | |
| on: | |
| pull_request_target: | |
| # Fork 审查需要目标仓库凭据;该 job 仅通过 GitHub API 读取 PR 内容,不 checkout 或执行 PR 分支代码。 | |
| types: | |
| - opened | |
| - reopened | |
| - ready_for_review | |
| - review_requested | |
| - synchronize | |
| issue_comment: | |
| types: | |
| - created | |
| - edited | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| pr-agent: | |
| if: >- | |
| github.event.sender.type != 'Bot' && | |
| ( | |
| github.event_name == 'pull_request_target' || | |
| ( | |
| github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request != null && | |
| contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR", "FIRST_TIME_CONTRIBUTOR"]'), github.event.comment.author_association) | |
| ) | |
| ) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request_target' }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Run PR Review | |
| uses: docker://ghcr.io/infinitypacer/pr-review-runner:latest | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | |
| OPENAI.API_BASE: ${{ secrets.OPENAI_API_BASE }} | |
| PRR_AUTO_REVIEW_SCOPE: all | |
| PRR_ALLOWED_ASSOCIATIONS: '["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR", "FIRST_TIME_CONTRIBUTOR"]' | |
| PRR_DISABLED_COMMANDS: '["/improve"]' | |
| PRR_SKIP_LABEL: skip pr-agent | |
| PRR_SKIP_TITLE_PATTERN: '^(?:\[Auto\]|Auto)' | |
| config.response_language: zh-CN |