mirror of
https://github.com/GSManagerXZ/GameServerManager.git
synced 2026-09-06 16:09:44 +08:00
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
name: opencode
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
pull_request_review_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
|
|
timeout-minutes: 60 # 兜底超时,防止无限挂起
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
pull-requests: read
|
|
issues: read
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Generate full allow opencode config
|
|
run: |
|
|
cat > opencode.config.json << 'EOF'
|
|
{
|
|
"permissions": [
|
|
{ "permission": "bash", "pattern": "*", "action": "allow" },
|
|
{ "permission": "read", "pattern": "*", "action": "allow" },
|
|
{ "permission": "write", "pattern": "*", "action": "allow" },
|
|
{ "permission": "delete", "pattern": "*", "action": "allow" },
|
|
{ "permission": "external_directory", "pattern": "*", "action": "allow" },
|
|
{ "permission": "network", "pattern": "*", "action": "allow" },
|
|
{ "permission": "process", "pattern": "*", "action": "allow" }
|
|
]
|
|
}
|
|
EOF
|
|
|
|
- name: Run opencode
|
|
uses: anomalyco/opencode/github@latest
|
|
env:
|
|
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
|
|
with:
|
|
model: deepseek/deepseek-v4-flash
|
|
config: ./opencode.config.json |