docs: add section on ignoring tickets with specific labels in analysis

This commit is contained in:
Hussam.lawen 2025-07-27 20:06:26 +03:00
parent 12a01ef5f5
commit fc3045df95
No known key found for this signature in database
GPG key ID: 07E08C11EA208BC2

View file

@ -261,4 +261,17 @@ ignore_language_framework = ['protobuf', ...]
```
You can view the list of auto-generated file patterns in [`generated_code_ignore.toml`](https://github.com/qodo-ai/pr-agent/blob/main/pr_agent/settings/generated_code_ignore.toml).
Files matching these glob patterns will be automatically excluded from PR Agent analysis.
Files matching these glob patterns will be automatically excluded from PR Agent analysis.
### Ignoring Tickets with Specific Labels
When Qodo Merge analyzes tickets (JIRA, GitHub Issues, GitLab Issues, etc.) referenced in your PR, you may want to exclude tickets that have certain labels from the analysis. This is useful for filtering out tickets marked as "ignore-compliance", "skip-review", or other labels that indicate the ticket should not be considered during PR review.
To ignore tickets with specific labels, add the following to your `configuration.toml` file:
```toml
[config]
ignore_ticket_labels = ["ignore-compliance", "skip-review", "wont-fix"]
```
Where `ignore_ticket_labels` is a list of label names that should be ignored during ticket analysis.