fix: Switch to gemini #240
1 changed files with 30 additions and 12 deletions
|
@ -1,12 +1,12 @@
|
|||
name: Setup Gitea Tea CLI
|
||||
name: Gemini Review
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize] # Runs on new PRs and updates
|
||||
|
||||
jobs:
|
||||
setup-and-login:
|
||||
runs-on: ubuntu-latest
|
||||
Gemini:
|
||||
runs-on: local
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
@ -31,7 +31,7 @@ jobs:
|
|||
TEA_VERSION=$(echo "${{ steps.tea_version.outputs.version }}")
|
||||
wget "https://gitea.com/gitea/tea/releases/download/v${TEA_VERSION}/tea-${TEA_VERSION}-linux-amd64" -O tea
|
||||
chmod +x tea
|
||||
sudo mv tea /usr/local/bin/tea
|
||||
mv tea /usr/local/bin/tea
|
||||
|
||||
- name: Verify Tea Installation
|
||||
run: tea --version
|
||||
|
@ -57,21 +57,39 @@ jobs:
|
|||
- name: Install claude code
|
||||
run: bun i -g @anthropic-ai/claude-code
|
||||
|
||||
- name: Claude PR Review
|
||||
- name: Get PR Diff
|
||||
id: get_pr_diff
|
||||
run: |
|
||||
# Fetch the base branch to get the diff accurately
|
||||
git fetch origin main:main
|
||||
DIFF=$(git diff main...HEAD)
|
||||
# Escape quotes and other special characters for the multiline string
|
||||
ESCAPED_DIFF=$(echo "$DIFF" | sed 's/"/\\"/g' | sed ':a;N;$!ba;s/\n/\\n/g')
|
||||
echo "diff=$ESCAPED_DIFF" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Gemini PR Review
|
||||
if: steps.check-renovate.outputs.author != 'Renovate Bot'
|
||||
env:
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
PR_NUMBER: ${{ github.event.number }}
|
||||
PR_DIFF: ${{ steps.get_pr_diff.outputs.diff }}
|
||||
run: |
|
||||
claude --allowedTools "Bash(tea:*)" --allowedTools "Bash(git:*) Read Grep WebFetch Glob LS" -p "You are a code review assistant. Your task is to review the changes in Pull Request #${PR_NUMBER}. All relevant changes can be seen by looking at the git diff HEAD...main (NEVER EVER REVIEW ALL THE CODE ONLY THE ONE FROM THE DIFF you can use the rest as context) or using the tea cli which you can use and we are on gitea. Also make sure to only review the changes in this pull request
|
||||
ANTHROPIC_BASE_URL=${{ secrets.ANTHROPIC_BASE_URL }} claude --allowedTools "Bash(tea:*)" --allowedTools "Bash(git:*) Read Grep WebFetch Glob LS" -p "You are a code review assistant. Your task is to review the changes in Pull Request #${PR_NUMBER}. The relevant changes are provided as a git diff below.
|
||||
|
||||
Only provide constructive feedback on the quality, correctness, readability, and potential issues in the code. Do not make any changes or suggest complete rewrites—just review what is there.
|
||||
--- Start of PR Diff ---
|
||||
${PR_DIFF}
|
||||
--- End of PR Diff ---
|
||||
|
||||
Only provide constructive feedback on the quality, correctness, readability, and potential issues in the code based on the provided diff. Do not make any changes or suggest complete rewrites—just review what is there. You can use the rest of the repository as context if needed, but focus your review on the changes shown in the diff.
|
||||
|
||||
Once you are done with your review, post your feedback as a reject or review on the pull request using the following exact format:
|
||||
|
||||
tea \"<reject or approve>\" ${PR_NUMBER} \"<your review message here>\"
|
||||
tea \"<reject or approve>\" ${PR_NUMBER} \"<your review message here>\"
|
||||
|
||||
Make sure the comment is clear, professional, and helpful. Only run the tea comment command once you're finished reviewing all changes. AND MOST IMPORTANDLY ONLY REVIEW THE DIFF FROM THE CURRENT STATE TO THE MAIN BRANCH TO GET THAT USE GIT DIFF
|
||||
You may also use the tea cli to find out various things about the pull request
|
||||
Don't be too strict
|
||||
Also MAKE SURE TO ALWAYS MENTION WHAT FILES AND LINE NUMBERS ARE WRONG"
|
||||
Make sure the comment is clear, professional, and helpful. Only run the tea comment command once you're finished reviewing all changes.
|
||||
ALWAYS PUT A COMMENT
|
||||
|
||||
You may also use the tea cli to find out various things about the pull request.
|
||||
Don't be too strict.
|
||||
Also MAKE SURE TO ALWAYS MENTION WHAT FILES AND LINE NUMBERS ARE WRONG.
|
||||
Use the tea cli at all cost."
|
Reference in a new issue