> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qodo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Persistent review comments

> Persistent review comments allow Qodo to update an existing review comment when new commits are pushed, instead of posting a new review each time.

To enable this behavior, push-trigger handling must be enabled in your repository configuration. You can enable it from the Qodo portal or using the `.pr_agent.toml` file.

### Enable from the Qodo portal

Set the [Code review trigger](/install-and-configure/configuration-overview/portal-configuration#code-review) setting to **Per commit**.

### Enable using .pr\_agent.toml

Add the following inside your relevant git provider section in `.pr_agent.toml`. Do not include this in multiple provider sections.

Example (GitLab):

```toml theme={null}
[gitlab]
handle_push_trigger = true
push_commands = [
  "/agentic_review"
]
```

Default: `false`

After this is enabled, Qodo will automatically update the existing review comment whenever new commits are pushed to the pull/merge request.

### How it works

* With every new commit, Qodo updates the existing review comment.
* If a new issue is introduced in a new commit, it appears as an additional finding marked with a ⭐️ **New** label.
* All findings are visible directly in the pull request code review.

<Frame>
  <img src="https://mintcdn.com/qodo/8f9QSVoLIbSaCs56/images/code-review/pr-summary-comment-example.png?fit=max&auto=format&n=8f9QSVoLIbSaCs56&q=85&s=6877d41e7df2ddb1b1b759f52d47f2c0" alt="Persistent review comment updated with new findings marked with a star New label" width="869" height="691" data-path="images/code-review/pr-summary-comment-example.png" />
</Frame>

**Benefits**

* Keeps pull request conversations clean
* Makes it easier to track progress across commits
* Reduces noise during iterative reviews

### Audit trail

Qodo maintains an audit trail of review findings, including:

* Findings added per commit
* Findings resolved per commit

<Frame>
  <img src="https://mintcdn.com/qodo/8f9QSVoLIbSaCs56/images/code-review/audit-trail-findings-log.png?fit=max&auto=format&n=8f9QSVoLIbSaCs56&q=85&s=020b2f5ee4c806b17e54a1b50c7bfe15" alt="Code review audit trail log showing findings added and resolved per commit" width="759" height="213" data-path="images/code-review/audit-trail-findings-log.png" />
</Frame>
