mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2024-11-23 04:29:03 +00:00
17 lines
465 B
YAML
17 lines
465 B
YAML
|
name: "OpenAI Code Review Action"
|
||
|
description: "Perform code reviews and comment on diffs using OpenAI API."
|
||
|
inputs:
|
||
|
GITHUB_TOKEN:
|
||
|
description: "GitHub token to interact with the repository."
|
||
|
required: true
|
||
|
OPENAI_API_KEY:
|
||
|
description: "OpenAI API key for GPT."
|
||
|
required: true
|
||
|
exclude:
|
||
|
description: "Glob patterns to exclude files from the diff analysis"
|
||
|
required: false
|
||
|
default: ""
|
||
|
runs:
|
||
|
using: "node16"
|
||
|
main: "dist/index.js"
|