chore: update docs locale sync workflow

This commit is contained in:
Adam
2026-02-27 09:18:17 -06:00
parent e49e781cb8
commit 9d76ef6c66

View File

@@ -47,12 +47,14 @@ jobs:
echo "EOF" echo "EOF"
} >> "$GITHUB_OUTPUT" } >> "$GITHUB_OUTPUT"
- name: Install OpenCode
if: steps.changes.outputs.has_changes == 'true'
run: curl -fsSL https://opencode.ai/install | bash
- name: Sync locale docs with OpenCode - name: Sync locale docs with OpenCode
if: steps.changes.outputs.has_changes == 'true' if: steps.changes.outputs.has_changes == 'true'
uses: sst/opencode/github@latest
env: env:
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }} OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
GITHUB_TOKEN: ${{ steps.committer.outputs.token }}
OPENCODE_CONFIG_CONTENT: | OPENCODE_CONFIG_CONTENT: |
{ {
"permission": { "permission": {
@@ -96,11 +98,8 @@ jobs:
} }
} }
} }
with: run: |
model: opencode/gpt-5.3-codex opencode run --agent docs --model opencode/gpt-5.3-codex <<'EOF'
agent: docs
use_github_token: true
prompt: |
Update localized docs to match the latest English docs changes. Update localized docs to match the latest English docs changes.
Changed English doc files: Changed English doc files:
@@ -118,6 +117,7 @@ jobs:
7. Keep locale docs structure aligned with their corresponding English pages. 7. Keep locale docs structure aligned with their corresponding English pages.
8. Do not modify English source docs in packages/web/src/content/docs/*.mdx. 8. Do not modify English source docs in packages/web/src/content/docs/*.mdx.
9. If no locale updates are needed, make no changes. 9. If no locale updates are needed, make no changes.
EOF
- name: Commit and push locale docs updates - name: Commit and push locale docs updates
if: steps.changes.outputs.has_changes == 'true' if: steps.changes.outputs.has_changes == 'true'