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: examples/workflows/pr-review/README.md
+16-10Lines changed: 16 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ This document explains how to use the Gemini CLI on GitHub to automatically revi
34
34
35
35
## Overview
36
36
37
-
The PR Review workflow uses Google's Gemini AI to provide comprehensive code reviews for pull requests. It analyzes code quality, security, performance, and maintainability while providing constructive feedback in a structured format.
37
+
The PR Review workflow uses Google's Gemini AI and [code review extension](https://github.com/gemini-cli-extensions/code-review)to provide comprehensive code reviews for pull requests. It analyzes code quality, security, performance, and maintainability while providing constructive feedback in a structured format.
38
38
39
39
## Features
40
40
@@ -178,16 +178,15 @@ After posting all inline comments, the action submits the review with a final su
178
178
The action provides specific, actionable feedback directly on the relevant lines of code in the pull request. Each comment includes:
179
179
180
180
-**Priority**: An emoji indicating the severity of the feedback.
181
-
- 🔴 **Critical**: Must be fixed before merging (e.g., security vulnerabilities, breaking changes).
182
-
- 🟠 **High**: Should be addressed (e.g., performance issues, design flaws).
-**Low**: Nice-to-have suggestions (e.g., documentation, minor refactoring).
186
185
-**Suggestion**: A code block with a suggested change, where applicable.
187
186
188
187
**Example Inline Comment:**
189
188
190
-
> 🟢 Use camelCase for function names
189
+
> Use camelCase for function names
191
190
>
192
191
> ```suggestion
193
192
> myFunction
@@ -216,15 +215,15 @@ You can customize the workflow by modifying:
216
215
217
216
### Review Prompt Customization
218
217
219
-
The review prompt is defined in the `gemini-review.toml` file. The action automatically copies this file from `.github/commands/` to `.gemini/commands/` during execution.
218
+
The review prompt utilizes [code review extension](https://github.com/gemini-cli-extensions/code-review) and its defined prompt.
0 commit comments