chore: let Qodo auto-approve PRs after self-review#2463
Conversation
Enable Qodo's review agent to approve a PR once the author completes the self-review checkbox, mirroring the setup used in the typeorm/typeorm repo: - demand_self_review = true - approve_pr_on_self_review = true Also document that .pr_agent.toml here is consumed by Qodo's hosted 'free for open source' agent (closed source), not by the open-source pr-agent in this repository.
PR Summary by QodoEnable Qodo auto-approval after author self-review Description
Diagram
High-Level Assessment
Files changed (1)
|
Code Review by Qodo
1. Misleading config header
|
What
Enable Qodo's review agent to approve a PR once the author completes the self-review checkbox, mirroring the setup used in the
typeorm/typeormrepository.Changes to
.pr_agent.toml:[review_agent] demand_self_review = true— adds a self-review checkbox the author must tick[review_agent] approve_pr_on_self_review = true— Qodo submits an approval once that box is checkedNote on this file
Added a header comment clarifying that
.pr_agent.tomlin this repo is consumed by Qodo's hosted "free for open source" agent (theqodo-free-for-open-source-projectsbot) — a separate, closed-source service. It is not read by the open-sourcepr-agentin this repository; keys like the[review_agent]section only exist in that hosted agent.