mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
docs: Add option to disable automatic CI feedback in configuration
This commit is contained in:
parent
a9d30c1d10
commit
1c8aeb2b64
1 changed files with 8 additions and 0 deletions
|
|
@ -23,6 +23,14 @@ In addition to being automatically triggered, the tool can also be invoked manua
|
||||||
```
|
```
|
||||||
where `{repo_name}` is the name of the repository, `{run_number}` is the run number of the failed check, and `{job_number}` is the job number of the failed check.
|
where `{repo_name}` is the name of the repository, `{run_number}` is the run number of the failed check, and `{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, you can do so by adding the following configuration to the configuration file:
|
||||||
|
```
|
||||||
|
[checks]
|
||||||
|
enable_auto_checks_feedback = false
|
||||||
|
```
|
||||||
|
|
||||||
## Configuration options
|
## Configuration options
|
||||||
- `enable_auto_checks_feedback` - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
|
- `enable_auto_checks_feedback` - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
|
||||||
- `excluded_checks_list` - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
|
- `excluded_checks_list` - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue