Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/triagebot/no-mentions.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ This feature is enabled on a repository by having a `[no-mentions]` table in `tr
[no-mentions]
```

Additionally, one can avoid checking certain pull requests with the `exclude-titles` configuration option.

```toml
[no-mentions]
# It doesn't make sense checking subtree updates, ignore those by matching case-insensitively on the title
exclude-titles = ["subtree update"]
```

## Implementation

See [`src/handlers/check_commits/no_mentions.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/src/handlers/check_commits/no_mentions.rs).