> ## 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.

# Checks (CI feedback)

<Badge color="outline-provider" size="sm" shape="pill" icon="github">GitHub</Badge>

<Warning>
  **Git Integration (formerly Qodo Merge)** – AI code review agents for pull requests. This documentation describes the Qodo v1 experience. For the Qodo v2 documentation, click [here.](/code-review)
</Warning>

The CI feedback tool `/checks` automatically triggers when a PR has a failed check.

The tool analyzes the failed checks and provides several feedbacks:

* Failed stage
* Failed test name
* Failure summary
* Relevant error logs

## How to use the `/checks` tool

**Manual usage**

Comment on the PR:

```bash theme={null}
/checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
```

Where:

* `{repo_name}` is the name of the repository.
* `{run_number}` is the run number of the failed check.
* `{job_number}` is the job number of the failed check.

### Disabling the tool from running automatically

If you wish to disable the tool from running automatically, add the following to the [configuration file](/v1/configuration/configuration-file/):

```toml theme={null}
[checks]
enable_auto_checks_feedback = false 
```

## Configuration options

Configure the `checks` tool by setting configurations under the `checks` part in your [configuration file](/v1/configuration/configuration-file/).

| Possible configurations       | Default value | What they do                                                                                                                                                     |
| :---------------------------- | :------------ | :--------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `enable_auto_checks_feedback` | `true`        | If set to true, the tool will automatically provide feedback when a check is failed.                                                                             |
| `excluded_checks_list`        | `[]`          | A list of checks to exclude from the feedback. For example: `["check1", "check2"]`.                                                                              |
| `persistent_comment`          | `true`        | If set to true, the tool will overwrite a previous checks comment with new feedback.                                                                             |
| `enable_help_text`            | `true`        | If set to true, the tool will provide a help message when a user comments `/checks` on a PR.                                                                     |
| `final_update_message`        | `true`        | If `persistent_comment` is true and updating a previous checks message, the tool will also create a new message: `"Persistent checks updated to latest commit"`. |

## Example usage

<Frame>
  <img src="https://mintcdn.com/qodo/uIkZ6kAWHm6WXqrW/images/v1/image-170.png?fit=max&auto=format&n=uIkZ6kAWHm6WXqrW&q=85&s=d20691bb2346c0c4ed28b295f80c18c7" alt="" width="1882" height="438" data-path="images/v1/image-170.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/qodo/uIkZ6kAWHm6WXqrW/images/v1/image-171.png?fit=max&auto=format&n=uIkZ6kAWHm6WXqrW&q=85&s=07780ed48d454d22f6c7af45ad150ef0" alt="" width="1832" height="712" data-path="images/v1/image-171.png" />
</Frame>
