-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (56 loc) · 2.08 KB
/
Copy pathopencode.yml
File metadata and controls
62 lines (56 loc) · 2.08 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
58
59
60
61
62
name: opencode
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
jobs:
opencode:
if: |
contains(github.event.comment.body, '/oc') ||
contains(github.event.comment.body, '/opencode')
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Configure git author
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Run OpenCode
uses: anomalyco/opencode/github@latest
env:
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
model: opencode/big-pickle
use_github_token: true
prompt: |
You are Big Pickle working in intent-framework/intent.
## Repository rules
- Always read AGENTS.md first.
- Prefer small PRs.
- Do not publish packages.
- Do not change package versions unless explicitly requested.
- Do not run destructive git commands.
- Do not force-push.
- Do not read or print secrets.
- Do not merge risky runtime/API/release/security-sensitive PRs unless explicitly approved.
- Docs/examples/tooling PRs may be merged after green CI if the user explicitly asked for that behavior.
- For ambiguous requests, comment with a short plan before making broad changes.
## Intent-specific workflow
When asked to implement work:
- inspect relevant files first
- create or update the appropriate branch
- keep changes scoped
- run pnpm test, typecheck, build, lint, pack:check, and changeset status
- open or update a PR
- observe CI
- report clearly