fix(driver): 使用绝对路径解决 Java 插件执行问题 #34
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
| on: | |
| pull_request: | |
| types: [opened, reopened, ready_for_review, synchronize] | |
| jobs: | |
| pr_agent_job: | |
| if: ${{ github.event.sender.type != 'Bot' && github.actor != 'actiontech-bot' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: write | |
| name: Run pr agent on every pull request, respond to user comments | |
| steps: | |
| - name: PR Agent action step | |
| id: pragent | |
| uses: qodo-ai/pr-agent@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| github_action_config.pr_actions: '["opened", "reopened", "ready_for_review", "review_requested", "synchronize"]' | |
| OPENAI_API_VERSION: "2024-07-01-preview" | |
| github_action_config.auto_review: "true" | |
| github_action_config.auto_describe: "true" | |
| github_action_config.auto_improve: "true" | |
| OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | |
| OPENAI.API_TYPE: "azure" | |
| OPENAI.API_BASE: ${{ secrets.OPENAI_API_BASE }} | |
| AZURE_API_VERSION: "2024-07-01-preview" | |
| OPENAI.DEPLOYMENT_ID: ${{ secrets.DEPLOYMENT_ID }} |