forked from pipe-cd/pipecd
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 811 Bytes
/
code-butler.yaml
File metadata and controls
32 lines (29 loc) · 811 Bytes
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
name: code_butler
permissions:
contents: read
pull-requests: write
on:
issue_comment:
types: [created]
jobs:
review:
if: startsWith(github.event.comment.body, '/review')
runs-on: ubuntu-24.04
steps:
- uses: ca-dp/code-butler@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
cmd: review
model: gpt-4-1106-preview
chat:
if: startsWith(github.event.comment.body, '/chat')
runs-on: ubuntu-24.04
steps:
- uses: ca-dp/code-butler@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
cmd: chat
model: gpt-4-1106-preview
comment_body: ${{ github.event.comment.body }}