You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/guides/custom-reports.md
+30-9
Original file line number
Diff line number
Diff line change
@@ -252,17 +252,38 @@ Within each group, sort by:
252
252
- Impact level
253
253
```
254
254
255
-
### Time-Based Analysis
255
+
### Optional Data Sources
256
256
257
-
Add temporal analysis to your reports:
257
+
You can also include optional data sources in your custom reports. By default, CodeRabbit will not include the following data sources. In a custom report you will see the option to include these data sources by clicking the `Select Optional Data Sources` button. This adds special XML tags to your prompt that allow you to include this data in your report.
258
258
259
-
```text
260
-
Provide:
261
-
- Week-over-week comparison
262
-
- Trend analysis for the past month
263
-
- Velocity metrics
264
-
- Time to merge statistics
265
-
```
259
+
#### Bot Comments
260
+
261
+
Bot comments are comments made by bots and Coderabbit AI on a PR. To enable bot comments you must include the tag `<include_bot_comments>` in your prompt.
262
+
263
+
These are very similar in structure to regular user comments but with a few key differences:
264
+
265
+
-`<bot_comments>`: array of comment objects - Contains all the comments made on the PR.
266
+
-`<bot_comment>`: object - Each individual comment is wrapped in this tag and is an object with the following properties:
267
+
-`<bot_name>`: string - The username of the comment author.
268
+
-`<bot_comment_created_at>`: datetime - The date and time the comment was created.
269
+
-`<bot_comment_updated_at>`: datetime - The date and time the comment was last updated.
270
+
-`<bot_comment_body>`: markdown - The content of the comment.
271
+
272
+
#### Issues and Tickets
273
+
274
+
Issues and tickets brings in conversations, descriptions, and comments from Jira and Linear as part of your report if the ticket is linked in your PR description. To enable issues and tickets you must include the tag `<include_issues_and_tickets>` in your prompt.
275
+
276
+
-`<issues_and_tickets>`: array of issue objects - Contains all the linked issues and tickets.
277
+
-`<issue>`: object - Each individual issue is wrapped in this tag and is an object with the following properties:
278
+
-`<issue_title>`: string - The title or thread ID of the issue.
279
+
-`<issue_url>`: string - The URL to the issue.
280
+
-`<issue_id>`: string - The unique identifier of the issue.
281
+
-`<issue_author>`: string - The username of who created the issue.
282
+
-`<issue_created_at>`: datetime - The date and time the issue was created.
283
+
-`<issue_updated_at>`: datetime - The date and time the issue was last updated.
284
+
-`<issue_body>`: markdown - The content/description of the issue. This contains the following sections:
285
+
-`<issue_description>`: markdown - The description of the issue.
286
+
-`<issue_comments>`: array of comment objects - Contains all the comments made on the issue.
0 commit comments