mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 19:05:18 +00:00
docs: add section on ignoring tickets with specific labels in analysis
This commit is contained in:
parent
12a01ef5f5
commit
fc3045df95
1 changed files with 14 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue