forked from AleksandrFurmenkovOfficial/ai-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from xonlly/feat-blacklist-extension-file
feat(B): add blacklist extensions files
- Loading branch information
Showing
4 changed files
with
50 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,33 @@ | ||
name: 'AI Code Review' | ||
description: 'Perform code review using OpenAI ChatGPT' | ||
name: "AI Code Review" | ||
description: "Perform code review using OpenAI ChatGPT" | ||
|
||
inputs: | ||
token: | ||
description: 'GitHub token' | ||
description: "GitHub token" | ||
required: true | ||
openai_api_key: | ||
description: 'OpenAI API key' | ||
description: "OpenAI API key" | ||
required: true | ||
owner: | ||
description: 'Repository owner' | ||
description: "Repository owner" | ||
required: true | ||
repo: | ||
description: 'Repository name' | ||
description: "Repository name" | ||
required: true | ||
pr_number: | ||
description: 'Pull request number' | ||
description: "Pull request number" | ||
required: true | ||
file_extensions: | ||
description: 'File extensions to review (comma-separated, e.g., ".py,.js,.html")' | ||
required: false | ||
exclude_paths: | ||
description: 'Paths to exclude from review (comma-separated, e.g., "test/,docs/")' | ||
required: false | ||
exclude_file_extensions: | ||
description: 'File extensions to exclude from review (comma-separated, e.g., ".py,.js,.html")' | ||
required: false | ||
|
||
runs: | ||
using: 'node16' | ||
pre: 'setup.js' | ||
main: 'index.js' | ||
using: "node16" | ||
pre: "setup.js" | ||
main: "index.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters