We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5797048 commit 3c329deCopy full SHA for 3c329de
github/action.yml
@@ -32,10 +32,15 @@ runs:
32
shell: bash
33
run: npm install -g bun
34
35
+ - name: Install dependencies
36
+ shell: bash
37
+ run: |
38
+ cd ${GITHUB_ACTION_PATH}
39
+ bun install
40
+
41
- name: Run opencode
42
- id: run_opencode
- run: bun index.ts
43
+ run: bun ${GITHUB_ACTION_PATH}/index.ts
44
env:
45
MODEL: ${{ inputs.model }}
46
SHARE: ${{ inputs.share }}
github/index.ts
@@ -130,6 +130,7 @@ let exitCode = 0
130
type PromptFiles = Awaited<ReturnType<typeof getUserPrompt>>["promptFiles"]
131
132
assertContextEvent("issue_comment")
133
+throw new Error("Not implemented")
134
135
try {
136
accessToken = await getAccessToken()
0 commit comments