We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f8477 commit 177bfedCopy full SHA for 177bfed
1 file changed
.github/workflows/opencode.yml
@@ -0,0 +1,25 @@
1
+name: opencode
2
+
3
+on:
4
+ issue_comment:
5
+ types: [created]
6
7
+jobs:
8
+ opencode:
9
+ if: startsWith(github.event.comment.body, 'hey opencode')
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 1
18
19
+ - name: Run opencode
20
+ uses: sst/opencode/sdks/github@dev
21
+ #uses: ./github-actions
22
+ env:
23
+ ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
24
25
+ model: anthropic/claude-sonnet-4-20250514
0 commit comments