Content-Length: 725836 | pFad | https://github.com/coderabbitai/coderabbit-docs/commit/c04f8c01244d3214aec183f172b8602f777c26f7

19 Merge branch 'main' into toc-reviews · coderabbitai/coderabbit-docs@c04f8c0 · GitHub
Skip to content

Commit c04f8c0

Browse files
authored
Merge branch 'main' into toc-reviews
2 parents e07a532 + 26b031a commit c04f8c0

15 files changed

+290
-35
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Welcome to the official docs for [**CodeRabbit**](https://coderabbit.ai), the co
4545
2. Clone this repository:
4646

4747
```sh
48-
git clone https://github.com/coderabbit-ai/coderabbit-docs.git
48+
git clone https://github.com/coderabbitai/coderabbit-docs.git
4949
cd coderabbit-docs
5050
```
5151

docs/changelog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ description: The latest updates and changes to CodeRabbit.
55
sidebar_position: 13
66
---
77

8+
## July 17, 2025
9+
10+
### Enhanced Reporting Capabilities
11+
12+
We're excited to announce significant improvements to our reporting system that will make your automated reports more powerful and actionable!
13+
14+
#### Exclusion Filters with NOT_IN Option
15+
16+
Reports now support exclusion filters using the `NOT_IN` option, allowing you to filter out pull requests based on their repository, label, user, or team. This gives you more granular control over what appears in your reports, helping you focus on the most relevant information.
17+
18+
#### Next Steps Section in Daily Standup Reports
19+
20+
We've enhanced the default daily standup report template to include a "Next Steps" section. This provides clear guidance on what actions authors and reviewers should take regarding each pull request or change, making your reports more actionable and helping teams stay on track.
21+
22+
#### CI/CD GitHub Action Check Status Awareness
23+
24+
Reports now include CI/CD GitHub Action check status as a data source. Your reports will be aware of which CI/CD checks are failing or passing, giving you better visibility into the health of your pull requests and helping identify potential issues before they become blockers.
25+
26+
#### Score Card Custom Report Option
27+
28+
We've added a new optional score card report feature that allows you to grade and create report cards for your developers. This custom report optional data source provides a structured way to evaluate developer performance and contributions. See our [custom reports documentation](/guides/custom-reports#remove-prs-without-a-score-cardchart-bot-comment) for more details on how to implement score cards in your reports.
29+
830
## July 10, 2025
931

1032
### Enhanced Python Static Analysis: nbqa Support for Jupyter Notebooks

docs/guides/config-vscode.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,21 @@ The **Agent Type** setting lets you choose the extension's response to using the
2828

2929
- **Native**: The extension prompts the AI agent associated with your IDE to apply the suggested fix.
3030

31-
This works only with VSCode, using Copilot. If you have this option selected when using a different IDE, then the extension instead copies the prompt to your clipboard.
31+
This works only with VSCode(using Copilot) and Cursor(you have to start the task). If you have this option selected when using a different IDE, then the extension instead copies the prompt to your clipboard.
3232

33-
- **Claude Code**: The extension opens the Terminal pane of your IDE and tries to use the `claude` command-line program to apply the suggested fix to your code. You need to have Claude Code installed for this option to be effective.
33+
- **Claude Code**: The extension opens the Terminal pane of your IDE and tries to use the `claude` command-line program to apply the suggested fix to your code. You need to have [Claude Code](https://www.anthropic.com/claude-code) installed for this option to be effective.
3434

35-
- **Codex CLI**: The extension opens the Terminal pane of your IDE and tries to use the `codex` command-line program to apply the suggested fix to your code. You need to have Codex CLI installed for this option to be effective.
35+
- **Codex CLI**: The extension opens the Terminal pane of your IDE and tries to use the `codex` command-line program to apply the suggested fix to your code. You need to have [Codex CLI](https://github.com/openai/codex) installed for this option to be effective.
3636

37-
- **Cline**: The extension opens the `Cline` sidebar and runs a task to apply the suggested fix to your code. You need to have the `Cline` extension installed for this option to be effective.
37+
- **OpenCode**: The extension opens the Terminal pane of your IDE and tries to use the `opencode` command-line program to apply the suggested fix to your code. You need to have [OpenCode](https://opencode.ai) installed for this option to be effective.
3838

39-
- **Roo**: The extension opens the `Roo` sidebar and runs a task to apply the suggested fix to your code. You need to have the `Roo` extension installed for this option to be effective.
39+
- **Cline**: The extension opens the `Cline` sidebar and runs a task to apply the suggested fix to your code. You need to have the [Cline](https://cline.bot/) extension installed for this option to be effective.
4040

41-
- **Kilo Code**: The extension opens the `Kilo Code` sidebar and runs a task to apply the suggested fix to your code. You need to have the `Kilo Code` extension installed for this option to be effective.
41+
- **Roo**: The extension opens the `Roo` sidebar and runs a task to apply the suggested fix to your code. You need to have the [Roo](https://github.com/RooCodeInc/Roo-Code) extension installed for this option to be effective.
42+
43+
- **Kilo Code**: The extension opens the `Kilo Code` sidebar and runs a task to apply the suggested fix to your code. You need to have the [Kilo Code](https://kilocode.ai/) extension installed for this option to be effective.
44+
45+
- **Augment Code**: The extension opens the `Augment Code` sidebar with the prompt to apply the suggested fix to your code, and you can start the task. You need to have the [Augment Code](https://www.augmentcode.com/) extension installed for this option to be effective.
4246

4347
- **Clipboard**: The extension copies prompt text describing the suggested fix to your clipboard. From there, you can manually paste the prompt into the coding AI agent that you use with your IDE.
4448

docs/guides/custom-reports.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,14 @@ Contained within the `<pr_details>` tag.
117117
- `<comment_updated_at>`: datetime - The date and time the comment was last updated.
118118
- `<comment_body>`: markdown - The content of the comment.
119119

120+
#### CI/CD Check Status
121+
122+
- `<pr_checks>`: array of check objects - Contains all CI/CD checks for the PR. _GitHub Only_.
123+
- `<pr_check>`: object - Each individual check is wrapped in this tag and is an object with the following properties:
124+
- `<pr_check_name>`: string - The name of the CI/CD check.
125+
- `<pr_check_status>`: string - The status of the check (e.g., "success", "failure", "in_progress", "canceled").
126+
- `<pr_check_url>`: string - The URL to view the detailed results of the check.
127+
120128
Here's an example prompt that uses these data points:
121129

122130
```text
@@ -299,7 +307,7 @@ Issues and tickets brings in conversations, descriptions, and comments from Jira
299307

300308
This option gives you the ability to create a report limited only to pull requests containing a "Score Card" or "Score Chart" bot comment from CodeRabbit or other bots. To enable issues and tickets you must include the tag `<pr_score_card>` in your prompt.
301309

302-
> **IMPORTANT:** This will automatically remove any pull requests from your reports if they do not contain a "Score Card" or "Score Chart" bot comment. Using this option without setting up a flow to create these comments will result in `No new pull request activity in the last XYZ hours` errors. Do not enable this option unless you have created a "Score Card" or "Score Chart" bot comment flow.
310+
> **IMPORTANT:** This will automatically remove any pull requests from your reports if they do not contain a "Score Card" or "Score Chart" bot comment. Using this option without setting up a flow to create these comments will result in `No new pull request activity in the last XYZ hours` errors. Do not enable this option unless you have asked coderabbit to create a "Score Card" thourhg a comment or implimented the "Score Chart" bot comment flow below.
303311
304312
For example you can ask coderabbit to check serveral conditions on a pull request and produce a "Score Chart":
305313

@@ -340,7 +348,7 @@ Generate a weekly code review report for the author of this pull request only fo
340348
- `1` → Passed
341349

342350
**Final Score Calculation:**
343-
Combine the scores from the parameters above to derive the final code quality score (out of 5).
351+
Combine the scores from the parameters above to derive the final code quality score (out of 9).
344352
**Output Format:**
345353
Provide the final report in a table format with the following columns (use shorthand notations), be sure to include this list at the top above the chart in the "Column Notation" section so users understand what the columns mean:
346354

docs/guides/ondemand-reports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';
1414

1515
This page is about using the CodeRabbit API to generate on-demand reports about your organization's usage of CodeRabbit. For a conceptual overview of reports in CodeRabbit, see [Generate reports](/guides/reports-overview).
1616

17-
If you're new to CodeRabbit's reporting features, then we recommend starting with [Scheduled reports](/guides/scheduled-reports) to understand the available options and capabilities.
17+
If you're new to CodeRabbit's reporting features, then we recommend starting with [Scheduled reports](/guides/scheduled-reports) to understand the available options and capabilities. In almost every scenario we recommend using the **Scheduled Reports** option. The **On-demand Report** does not have any additional benifits from the **Scheduled Reports** and has many limitations.
1818

1919
## API Access
2020

docs/guides/reports-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ You can track and analyze pull request activity across your organization's repos
1717

1818
There are two ways to generate reports:
1919

20-
- **[Scheduled Reports](/guides/scheduled-reports)**: Set up automated, recurring reports that are delivered to your team on a set schedule. Supported delivery channels include the following:
20+
- **[Scheduled Reports](/guides/scheduled-reports)**: Set up automated, recurring reports that are delivered to your team on a set schedule. **Use this option if you want to adjust your settings and send a report more than once**. Supported delivery channels include the following:
2121

2222
- Email
2323
- Discord
2424
- Slack
2525
- Teams
2626

27-
- **[On-demand Reports](/guides/ondemand-reports)**: If you require customized integration of reports with your own tools and workflows, then you can generate reports programmatically through our API.
27+
- **[On-demand Reports](/guides/ondemand-reports)**: If you want to test a report format and produce a single report once, try the "On-demand Reports" Option. You can also generate reports programmatically through our API, but we do not recommend this as the API reporting is in beta. If you want to run an **On-demand Report** more than once then you must use the **Scheduled Reports** option.
2828

29-
For your first reports, we recommend exploring scheduled reports. Its web-based UI can help you get familiar with the options available to you.
29+
In almost every scenario we recommend using the **Scheduled Reports** option. The **On-demand Report** does not have any additional benifits from the **Scheduled Reports** and has many limitations.
3030

3131
## Customize reports using natural language {#customize}
3232

docs/guides/scheduled-reports.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ Choose a time that works for all team members, especially for distributed teams
5252

5353
### Report Parameters
5454

55-
Reports can be filtered using multiple parameters:
55+
Reports can be filtered using multiple parameters, match pull requests using the **IN** option and exclude pull requests using the **NOT_IN** option:
5656

5757
- **Repositories**: Select specific repositories to monitor
5858
- **Labels**: Filter by GitHub labels with operators:
5959
- IN: Match any selected label
60+
- NOT_IN: Exclude any pr with select label
6061
- ALL: Match all selected labels
6162
- **Users**: Filter by specific GitHub users
6263
- **Teams**: Filter by organization teams

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

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/coderabbitai/coderabbit-docs/commit/c04f8c01244d3214aec183f172b8602f777c26f7

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy