Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #2

Merged
merged 4 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/code_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
OPENAI_API_MODEL: "gpt-4"
BOT_NAME: "Code Review Bot"
OPENAI_API_MODEL: "gpt-4o-mini"
BOT_NAME: "Intellizzer"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ Ready to revolutionize your code reviews? Follow these simple steps:
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_API_MODEL: "gpt-4o" # Optional, defaults to gpt-4o
OPENAI_API_MODEL: "gpt-4o-mini" # Optional, defaults to gpt-4o-mini
ENABLE_TELEGRAM_BOT: true
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
BOT_NAME: "Code Review Bot" # Optional
BOT_NAME: "Intellizzer" # Optional
exclude: "*.md,*.txt,package-lock.json,yarn.lock"
```

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
OPENAI_API_MODEL:
description: "OpenAI API model."
required: false
default: "gpt-4o"
default: "gpt-4o-mini"

OPENAI_API_ENDPOINT:
description: "Custom OpenAI API endpoint URL (optional)"
Expand All @@ -35,7 +35,7 @@ inputs:
BOT_NAME:
description: "Name of the bot that will appear in comments"
required: false
default: "Code Review Bot"
default: "Intellizzer"

exclude:
description: "Glob patterns to exclude files from the diff analysis (comma-separated)"
Expand Down
Loading