diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-13 09:32:46 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-13 09:32:46 +0300 |
| commit | ad392584c0515e15716f6848392a2da44ab659bc (patch) | |
| tree | a3d4112de32ee0623478deda534caa24a53855c8 /.coderabbit.yaml | |
| parent | 788cfae0097b493e8688f1c0a3eb493e895cb719 (diff) | |
| parent | 5edeb78a84a4cf266df93cb7e914a56e3fb401c0 (diff) | |
| download | coderabbit-ad392584c0515e15716f6848392a2da44ab659bc.tar.gz coderabbit-ad392584c0515e15716f6848392a2da44ab659bc.zip | |
Merge pull request #3 from vyos/yuriy/t8764-chat-non-org-members-and-bot-ignores
T8764: allow non-org-member chat + expand bot ignore list
Diffstat (limited to '.coderabbit.yaml')
| -rw-r--r-- | .coderabbit.yaml | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 84aa3b9..82842db 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -53,10 +53,18 @@ reviews: # `@coderabbitai review` still works if a human asks for one. The list # targets bots that open mechanical PRs whose content was already # reviewed upstream (e.g. Mergify cherry-picks the merge commit of an - # already-reviewed source PR, so re-reviewing the backport adds no - # signal and burns rate limit). + # already-reviewed source PR; Netlify and Claude bots either deploy + # or post code that's reviewed elsewhere) — re-reviewing the port + # adds no signal and burns rate limit. Both the bare login and the + # `[bot]` suffix are listed because GitHub Apps use the `[bot]` + # form, while service/human accounts may share the bare name. ignore_usernames: + - "mergify" - "mergify[bot]" + - "netlify" + - "netlify[bot]" + - "claude" + - "claude[bot]" path_filters: - "!**/*.lock" @@ -122,9 +130,13 @@ reviews: chat: auto_reply: true - # Lifted from Org-UI Web dashboard (2026-05-12). Restricts CodeRabbit - # chat to org members; non-members receive a deny message. - allow_non_org_members: false + # Allow non-organization members to interact with CodeRabbit in comment + # chat. The vyos org hosts public OSS repos where external contributors + # routinely open PRs; restricting chat to org members blocks them from + # using CodeRabbit's `@coderabbitai` commands on their own PRs. Does + # NOT affect auto-review eligibility — that's governed by + # `reviews.auto_review` (drafts, ignore_usernames, base_branches). + allow_non_org_members: true integrations: jira: { usage: disabled } linear: { usage: disabled } |
