Skip to content

Commit 9827f78

Browse files
authored
Merge branch 'main' into PrasadBhat4/docs-layout-improvements
2 parents 7539f61 + 2f756f3 commit 9827f78

File tree

7 files changed

+23
-5
lines changed

7 files changed

+23
-5
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
*.ts @coderabbitai/typescript-reviewers
1+
docusaurus.config.ts @coderabbitai/typescript-reviewers
2+
src/**/*.ts @coderabbitai/typescript-reviewers
3+
src/**/*.tsx @coderabbitai/react-reviewers

docs/platforms/azure-devops.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,8 @@ Follow these steps to generate the token:
9494
5. Select the organization you want to use the token with or select "All
9595
accessible organizations."
9696
6. Enter a name and an expiry date for the token.
97-
7. We need to have read & write access to "Work Items" & "Code" to post reviews
98-
on pull requests. If you are on the Pro tier also add "Build" access for pipeline
99-
failure remediation.
100-
8. Click "Create"
97+
7. Grant **Read, write, & manage** access to "Work Items" and "Code". CodeRabbit needs these permissions to post code reviews on pull requests.
98+
8. If you subscribe to CodeRabbit Pro, then you can also grant **Read** access to "Build" for pipeline failure remediation.
99+
9. Click "Create"
101100

102101
![CodeRabbit azure devOps personal access token creation form](/img/integrations/azure-access-token.png)

docs/self-hosted/azure-devops.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ LLM_TIMEOUT=360000
103103
AWS_ACCESS_KEY_ID=<aws-access-key>
104104
AWS_SECRET_ACCESS_KEY=<aws-secret-access-key>
105105
AWS_REGION=<aws-region>
106+
# optionally, use cross-region inference to access models in other regions
107+
# if this is set to `true`, CodeRabbit will access models from `us`, `eu`, or `ap` regions based on the AWS_REGION value.
108+
AWS_USE_CROSS_REGION_INFERENCE=[<true>]
106109

107110
TEMP_PATH=/cache
108111

docs/self-hosted/bitbucket.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ LLM_TIMEOUT=360000
9595
AWS_ACCESS_KEY_ID=<aws-access-key>
9696
AWS_SECRET_ACCESS_KEY=<aws-secret-access-key>
9797
AWS_REGION=<aws-region>
98+
# optionally, use cross-region inference to access models in other regions
99+
# if this is set to `true`, CodeRabbit will access models from `us`, `eu`, or `ap` regions based on the AWS_REGION value.
100+
AWS_USE_CROSS_REGION_INFERENCE=[<true>]
98101

99102
# System Configuration
100103
TEMP_PATH=/cache

docs/self-hosted/github.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ LLM_TIMEOUT=360000
106106
AWS_ACCESS_KEY_ID=<aws-access-key>
107107
AWS_SECRET_ACCESS_KEY=<aws-secret-access-key>
108108
AWS_REGION=<aws-region>
109+
# optionally, use cross-region inference to access models in other regions
110+
# if this is set to `true`, CodeRabbit will access models from `us`, `eu`, or `ap` regions based on the AWS_REGION value.
111+
AWS_USE_CROSS_REGION_INFERENCE=[<true>]
109112

110113
# if using Anthropic
111114
LLM_PROVIDER=anthropic

docs/self-hosted/gitlab.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ LLM_TIMEOUT=360000
134134
AWS_ACCESS_KEY_ID=<aws-access-key>
135135
AWS_SECRET_ACCESS_KEY=<aws-secret-access-key>
136136
AWS_REGION=<aws-region>
137+
# optionally, use cross-region inference to access models in other regions
138+
# if this is set to `true`, CodeRabbit will access models from `us`, `eu`, or `ap` regions based on the AWS_REGION value.
139+
AWS_USE_CROSS_REGION_INFERENCE=[<true>]
137140

138141
# if using Anthropic
139142
LLM_PROVIDER=anthropic

static/schema/schema.v2.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,11 @@
195195
"default": true,
196196
"description": "Generate sequence diagrams in the walkthrough."
197197
},
198+
"estimate_code_review_effort": {
199+
"type": "boolean",
200+
"default": true,
201+
"description": "Estimate the code review effort in the walkthrough."
202+
},
198203
"assess_linked_issues": {
199204
"type": "boolean",
200205
"default": true,

0 commit comments

Comments
 (0)