-
Notifications
You must be signed in to change notification settings - Fork 4
Setup‐Guide.md
Tmob edited this page Feb 4, 2025
·
1 revision
- GitHub repository
- OpenAI API account
- Telegram Bot (optional)
- Obtain OpenAI API Key
- Create Telegram Bot Token (optional)
Add the following secrets in your repository settings:
-
OPENAI_API_KEY
: Your OpenAI API key -
TELEGRAM_BOT_TOKEN
: Telegram bot token (optional) -
TELEGRAM_CHAT_ID
: Telegram chat ID for notifications (optional)
Create .github/workflows/code-review.yml
:
name: Intellizzer Code Reviewer
on:
pull_request:
types: [opened, synchronize]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: blizzertech/Intellizzer@latest
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}