Skip to content

Commit 3c329de

Browse files
author
Frank
committed
sync
1 parent 5797048 commit 3c329de

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

github/action.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,15 @@ runs:
3232
shell: bash
3333
run: npm install -g bun
3434

35+
- name: Install dependencies
36+
shell: bash
37+
run: |
38+
cd ${GITHUB_ACTION_PATH}
39+
bun install
40+
3541
- name: Run opencode
3642
shell: bash
37-
id: run_opencode
38-
run: bun index.ts
43+
run: bun ${GITHUB_ACTION_PATH}/index.ts
3944
env:
4045
MODEL: ${{ inputs.model }}
4146
SHARE: ${{ inputs.share }}

github/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ let exitCode = 0
130130
type PromptFiles = Awaited<ReturnType<typeof getUserPrompt>>["promptFiles"]
131131

132132
assertContextEvent("issue_comment")
133+
throw new Error("Not implemented")
133134

134135
try {
135136
accessToken = await getAccessToken()

0 commit comments

Comments
 (0)