Automatically skip reviews for pull requests from specific users like bots, service accounts, or team members by adding usernames to your configuration.
Check PR author
ignore_usernames
listSkip if matched
Continue if not matched
Manual override available
@coderabbitai review
to force a review even for ignored usersignore_usernames
array to your .coderabbit.yaml
file:
[bot]
suffix.Configuration | PR Author | Review Status | Comment Posted |
---|---|---|---|
[] (empty) | Any user | ✅ Reviewed | Yes (if applicable) |
["bot-user"] | bot-user | ❌ Skipped | No (silent skip) |
["bot-user"] | other-user | ✅ Reviewed | Yes (if applicable) |
["user1", "user2"] | user1 | ❌ Skipped | No (silent skip) |
["User1"] | user1 | ✅ Reviewed | Yes (case mismatch) |
ignore_usernames
, their PR is skipped regardless of labels or other settings.Use for permanent exclusions
wip
or draft
instead.Verify exact usernames
dependabot[bot]
, renovate[bot]
, github-actions[bot]
gitlab-ci-token
, project_123_bot
Document your choices
Regular review
*[bot]
or dependabot*
User1
and user1
are treated as different users.coderabbit.yaml
changes are committed@coderabbitai review
on the PR