generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
34 lines (32 loc) · 997 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: 'code-butler for PR Review'
description: 'GitHub Action for performing code reviews using the OpenAI API.'
author: 'ouchi2501'
inputs:
GITHUB_TOKEN:
description: 'Derivative token for using the GitHub REST API'
required: true
OPENAI_API_KEY:
description: 'OpenAI API Key'
required: true
cmd:
description: 'Command is one of review/chat'
required: true
model:
description: 'Model which should be used for the command'
required: false
lang:
description: 'Language be used in response, ja or en'
required: false
default: 'en'
comment_body:
description: 'Iterative input string. Contains questions for example'
required: false
exclude_files:
description: 'Files to not scan. Using commas to separate file names'
required: false
exclude_extensions:
description: 'File extensions which should not be scanned. Using commas to separate extensions name'
required: false
runs:
using: node20
main: dist/index.js