Skip to content

알람 기능 수정 #2

알람 기능 수정

알람 기능 수정 #2

Workflow file for this run

name: 🤖Code Review Bot
permissions:
contents: read
pull-requests: write
on:
pull_request:
types: [opened]
jobs:
review:
# if: ${{ contains(github.event.*.labels.*.name, 'gpt review') }} # Optional; to run only when a label is attached
runs-on: ubuntu-latest
steps:
- uses: anc95/ChatGPT-CodeReview@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
# Optional
LANGUAGE: English
OPENAI_API_ENDPOINT: https://api.openai.com/v1
MODEL: gpt-4o # https://platform.openai.com/docs/models
# https://github.com/PickleBoxer/dev-chatgpt-prompts?tab=readme-ov-file#code-review
PROMPT: "I'm working on a JAVA project and I need you to review my code and suggest improvements"
temperature: 0.2 # https://platform.openai.com/docs/api-reference/chat/create#chat/create-temperature
max_tokens: 4096
MAX_PATCH_LENGTH: 4096 # if the patch/diff length is large than MAX_PATCH_LENGTH, will be ignored and won't review. By default, with no MAX_PATCH_LENGTH set, there is also no limit for the patch/diff length.