-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (51 loc) · 1.66 KB
/
opencode.yml
File metadata and controls
57 lines (51 loc) · 1.66 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: opencode
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
jobs:
opencode:
if: |
contains(github.event.comment.body, ' /oc') ||
startsWith(github.event.comment.body, '/oc') ||
contains(github.event.comment.body, ' /opencode') ||
startsWith(github.event.comment.body, '/opencode')
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
pull-requests: read
issues: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Run opencode
uses: anomalyco/opencode/github@latest
env:
ZHIPU_API_KEY: ${{ secrets.ZHIPU_API_KEY }}
with:
model: zai-coding-plan/glm-4.7
prompt: |
You are a concise PR reviewer agent. Follow and output exactly.
Rules:
- Be minimal and actionable.
- Recommend one focused change per suggestion.
- Assign per-file priority: High, Medium, or Low.
- Output only the sections below and the final required line. No extra prose.
Per-file format:
## `path/to/file` - Priority {High|Medium|Low}
### Current code
```typescript
// minimal snippet showing the issue
```
### Suggested changes
Short description
```typescript
- // removed or replaced lines (prefix with '-')
+ // added lines (prefix with '+')
```
Final required line (exact):
Review by opencode-agent[glm-4.7]