Skip to content

Commit 170e476

Browse files
authored
Merge pull request #2451 from stackhpc/coderabbit-config
Add coderabbit review configuration
2 parents a40a5ec + 00ffa60 commit 170e476

1 file changed

Lines changed: 67 additions & 0 deletions

File tree

.coderabbit.yaml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
2+
# CodeRabbit review config file
3+
4+
language: "en-GB"
5+
reviews:
6+
# Options are "quiet", "chill", "assertive" in order of nitpickyness
7+
profile: "assertive"
8+
# Don't automatically approves PRs
9+
request_changes_workflow: false
10+
# Summarise the PR in a comment
11+
high_level_summary: true
12+
# Summary instructions
13+
high_level_summary_instructions: "Give a brief description of the changes in 50 words or less."
14+
# Put summary in a comment, don't override the PR description
15+
high_level_summary_in_walkthrough: true
16+
# Post a comment e.g. when a review is skipped, why so
17+
review_status: true
18+
# Posts extra details about the review (ignored files, extra context used, suppressed comments, etc.)
19+
review_details: true
20+
# Don't suggest labels to apply to PRs
21+
suggested_labels: false
22+
# Don't suggest reviewers to add to the PR
23+
suggested_reviewers: false
24+
# Don't post a "fortune" message while the review is running
25+
in_progress_fortune: false
26+
# Don't include review comments to provide codegen instructions for AI agents.
27+
enable_prompt_for_ai_agents: false
28+
29+
# Auto review configuration
30+
auto_review:
31+
# Review things
32+
enabled: true
33+
# Review draft PRs
34+
drafts: true
35+
# Don't auto re-review on push (Can always be re-triggered manually)
36+
auto_incremental_review: false
37+
# Branches to auto-review PRs against
38+
# Regex should match branch such as:
39+
# stackhpc/2025.1
40+
# stackhpc-dev/2026.1
41+
# stackhpc-rc/2027.1
42+
base_branches:
43+
- ^stackhpc/202\d\.1$
44+
- ^stackhpc-rc/202\d\.1$
45+
- ^stackhpc-dev/202\d\.1$
46+
# Ignore PRs by the CI bot
47+
ignore_usernames:
48+
- "stackhpc-ci"
49+
50+
finishing_touches:
51+
# Don't try to add docstrings and unit tests
52+
docstrings:
53+
enabled: false
54+
unit_tests:
55+
enabled: false
56+
57+
pre_merge_checks:
58+
# Ignore title/description checks
59+
title:
60+
mode: "off"
61+
description:
62+
mode: "off"
63+
64+
# Additional context options
65+
knowledge_base:
66+
# Auto link to other repos in the org
67+
automatic_repository_linking: true

0 commit comments

Comments
 (0)