Skip to content

Commit fbcd7fa

Browse files
Faruk Brbovicclaude
andcommitted
chore: merge upstream/dev v1.0.162 into local
- Sync with sst/opencode upstream - New features: dialog system refactor, font-size updates, LSP diagnostics fix - Bug fixes: preserve argument boundaries, file path parsing - Tauri: explicit sidecar kill before updater, macos-only menu 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
2 parents 271c938 + 452c991 commit fbcd7fa

File tree

2,232 files changed

+67528
-50330
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,232 files changed

+67528
-50330
lines changed

.github/guidelines-check.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.github/workflows/auto-label-tui.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
1111

1212
jobs:
1313
deploy:
14-
runs-on: ubuntu-latest
14+
runs-on: blacksmith-4vcpu-ubuntu-2404
1515
steps:
1616
- uses: actions/checkout@v3
1717

1818
- uses: ./.github/actions/setup-bun
1919

20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version: "24"
23+
2024
- run: bun sst deploy --stage=${{ github.ref_name }}
2125
env:
2226
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}

.github/workflows/duplicate-issues.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
check-duplicates:
9-
runs-on: ubuntu-latest
9+
runs-on: blacksmith-4vcpu-ubuntu-2404
1010
permissions:
1111
contents: read
1212
issues: write
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Check for duplicate issues
2323
env:
24-
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
24+
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
OPENCODE_PERMISSION: |
2727
{
@@ -55,4 +55,7 @@ jobs:
5555
5656
Feel free to ignore if none of these address your specific case.'
5757
58+
Additionally, if the issue mentions keybinds, keyboard shortcuts, or key bindings, please add a comment mentioning the pinned keybinds issue #4997:
59+
'For keybind-related issues, please also check our pinned keybinds documentation: #4997'
60+
5861
If no clear duplicates are found, do not comment."

.github/workflows/format.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/generate.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: generate
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- production
7+
pull_request:
8+
branches-ignore:
9+
- production
10+
workflow_dispatch:
11+
12+
jobs:
13+
generate:
14+
runs-on: blacksmith-4vcpu-ubuntu-2404
15+
permissions:
16+
contents: write
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v4
20+
with:
21+
token: ${{ secrets.GITHUB_TOKEN }}
22+
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
23+
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
24+
25+
- name: Setup Bun
26+
uses: ./.github/actions/setup-bun
27+
28+
- name: Generate SDK
29+
run: |
30+
bun ./packages/sdk/js/script/build.ts
31+
(cd packages/opencode && bun dev generate > ../sdk/openapi.json)
32+
bun x prettier --write packages/sdk/openapi.json
33+
34+
- name: Format
35+
run: ./script/format.ts
36+
env:
37+
CI: true
38+
PUSH_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}

.github/workflows/notify-discord.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
notify:
9-
runs-on: ubuntu-latest
9+
runs-on: blacksmith-4vcpu-ubuntu-2404
1010
steps:
1111
- name: Send nicely-formatted embed to Discord
1212
uses: SethCohen/github-releases-to-discord@v1

.github/workflows/opencode.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: opencode
33
on:
44
issue_comment:
55
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
68

79
jobs:
810
opencode:
@@ -11,7 +13,7 @@ jobs:
1113
startsWith(github.event.comment.body, '/oc') ||
1214
contains(github.event.comment.body, ' /opencode') ||
1315
startsWith(github.event.comment.body, '/opencode')
14-
runs-on: ubuntu-latest
16+
runs-on: blacksmith-4vcpu-ubuntu-2404
1517
permissions:
1618
id-token: write
1719
contents: read
@@ -21,9 +23,12 @@ jobs:
2123
- name: Checkout repository
2224
uses: actions/checkout@v4
2325

26+
- uses: ./.github/actions/setup-bun
27+
2428
- name: Run opencode
2529
uses: sst/opencode/github@latest
2630
env:
2731
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
32+
OPENCODE_PERMISSION: '{"bash": "deny"}'
2833
with:
29-
model: opencode/glm-4.6
34+
model: opencode/claude-opus-4-5

.github/workflows/publish-github-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
publish:
17-
runs-on: ubuntu-latest
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
1818
steps:
1919
- uses: actions/checkout@v3
2020
with:

.github/workflows/publish-vscode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
publish:
16-
runs-on: ubuntu-latest
16+
runs-on: blacksmith-4vcpu-ubuntu-2404
1717
steps:
1818
- uses: actions/checkout@v3
1919
with:

0 commit comments

Comments
 (0)