Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions .github/workflows/pr-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,32 @@ jobs:
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }}
openrouter.key: ${{ secrets.OPENROUTER_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
github_action_config.auto_review: "true"
github_action_config.auto_describe: "true"
github_action_config.auto_improve: "true"
github_action_config.pr_actions: '["opened", "reopened", "ready_for_review", "synchronize"]'
config.model: "openai/preview/Kimi-K2.7-Code"
config.fallback_models: '["openai/preview/Qwen3.6-35B-A3B"]'
config.model: "openrouter/openai/gpt-5.6-luna"
config.fallback_models: '["openrouter/moonshotai/kimi-k2.7-code"]'
config.custom_model_max_tokens: 256000
config.max_model_tokens: 120000
config.temperature: "0.2"
config.temperature: "0"
pr_code_suggestions.commitable_code_suggestions: "true"
pr_reviewer.num_code_suggestions: "3"
pr_reviewer.enable_review_score: "false"
pr_reviewer.extra_instructions: |
You are a senior software engineer and code reviewer. You will review the code in the pull request and provide feedback on bugs, security, performance, and maintainability. You will not provide feedback on style or formatting. You will be concise in your feedback.
Review only:
- correctness
- bugs
- security
- performance
- maintainability
Ignore:
- formatting
- naming
- style
- comments
Do not suggest refactoring unless it addresses
a maintainability or correctness issue.
Be concise.
Loading