Github App broken with 0.14 #1923

Closed
opened 2026-02-16 17:33:15 -05:00 by yindo · 3 comments
Owner

Originally created by @TilDoesCode on GitHub (Oct 2, 2025).

Originally assigned to: @fwang on GitHub.

Hi,

my github app worked fine until I wanted to use it today. After some digging I found that the "opencode github run" command the action used to run is missing now.

Here is the command output:

Run sst/opencode/github@latest
Run curl -fsSL https://opencode.ai/install | bash
Downloading opencode version: 0.14.0 ...
#=#=#                                                                          
##O#-#                                                                         

################################                                          45.6%
######################################################################## 100.0%
Successfully added opencode to $PATH in /home/runner/.bashrc
Added /home/runner/.opencode/bin to $GITHUB_PATH
Run opencode github run
opencode github

manage GitHub agent

Commands:
  opencode github install  install the GitHub agent

Options:
      --help        show help                                          [boolean]
  -v, --version     show version number                                [boolean]
      --print-logs  print logs to stderr                               [boolean]
      --log-level   log level
                            [string] [choices: "DEBUG", "INFO", "WARN", "ERROR"]

I confirmed it to be missing in 0.14 on my machine as well

Originally created by @TilDoesCode on GitHub (Oct 2, 2025). Originally assigned to: @fwang on GitHub. Hi, my github app worked fine until I wanted to use it today. After some digging I found that the "opencode github run" command the action used to run is missing now. Here is the command output: ``` Run sst/opencode/github@latest Run curl -fsSL https://opencode.ai/install | bash Downloading opencode version: 0.14.0 ... #=#=# ##O#-# ################################ 45.6% ######################################################################## 100.0% Successfully added opencode to $PATH in /home/runner/.bashrc Added /home/runner/.opencode/bin to $GITHUB_PATH Run opencode github run opencode github manage GitHub agent Commands: opencode github install install the GitHub agent Options: --help show help [boolean] -v, --version show version number [boolean] --print-logs print logs to stderr [boolean] --log-level log level [string] [choices: "DEBUG", "INFO", "WARN", "ERROR"] ``` I confirmed it to be missing in 0.14 on my machine as well
yindo closed this issue 2026-02-16 17:33:15 -05:00
Author
Owner

@fwang commented on GitHub (Oct 2, 2025):

can i see your github workflow file?

@fwang commented on GitHub (Oct 2, 2025): can i see your github workflow file?
Author
Owner

@TilDoesCode commented on GitHub (Oct 2, 2025):

@fwang
Sure, this is the file. I also recreated it with 0.14 (Im sorry but github wont let me format it right)

`
name: opencode

on:
issue_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: write
pull-requests: write
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run opencode
uses: sst/opencode/github@latest
env:
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
with:
model: openrouter/openai/gpt-5
`

@TilDoesCode commented on GitHub (Oct 2, 2025): @fwang Sure, this is the file. I also recreated it with 0.14 (Im sorry but github wont let me format it right) ` name: opencode on: issue_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: write pull-requests: write issues: write steps: - name: Checkout repository uses: actions/checkout@v4 - name: Run opencode uses: sst/opencode/github@latest env: OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} with: model: openrouter/openai/gpt-5 `
Author
Owner

@fwang commented on GitHub (Oct 2, 2025):

Fixed. Thanks for bringing it up @TilDoesCode!

@fwang commented on GitHub (Oct 2, 2025): Fixed. Thanks for bringing it up @TilDoesCode!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: anomalyco/opencode#1923