果断去掉
00008140-001825511433001C.mobiledevicepairing{
"OPENAI_API_KEY": "公益key"
}model_provider = "packycode"
model = "gpt-5"
model_reasoning_effort = "high"
disable_response_storage = true
[model_providers.packycode]
name = "packycode"
base_url = "http://oai-api.fkclaude.com/v1"
wire_api = "responses"
env_key = "packycode" "chatgpt.apiBase": "https://oai-api.fkclaude.com/v1",
"chatgpt.config": {
"preferred_auth_method":"apikey"
} "mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": [
"chrome-devtools-mcp@latest"
]
},
"excel": {
"command": "npx",
"args": ["--yes", "@negokaz/excel-mcp-server"],
"env": {
"EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
}
},
"word-document-server": {
"command": "uvx",
"args": [
"--from",
"office-word-mcp-server",
"word_mcp_server"
]
}
}, "mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": [
"chrome-devtools-mcp@latest"
]
},
"word-document-server": {
"command": "uvx",
"args": [
"--from",
"office-word-mcp-server",
"word_mcp_server"
]
},
"excel": {
"command": "cmd",
"args": [
"/c",
"npx",
"--yes",
"@negokaz/excel-mcp-server"
],
"env": {
"EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
}
}
} - name: Keepalive Commit
run: |
# 1. 进入你 checkout 的代码目录
cd code
# 2. 配置 Git 机器人信息
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
# 3. 更新 heartbeat 文件(即使在 .gitignore 里也没关系)
echo "Last run: $(date)" > heartbeat.txt
# 4. 强制添加被忽略的文件 (-f 是关键)
git add -f heartbeat.txt
# 5. 提交更改
# [skip ci] 是为了防止某些配置下触发死循环,且让 commit 历史更整洁
git commit -m "chore: keepalive workflow $(date +'%Y-%m-%d %H:%M:%S') [skip ci]" || exit 0
# 6. 推送回主分支
# HEAD:main 确保推送到你的主分支(如果你的主分支叫 master,请改名)
git push origin HEAD:${{ github.ref_name }}