Guanghu Domestic Migration d1e47f4565
Some checks are pending
自动更新代码和重启 / update-and-restart (push) Waiting to run
CI检查 + 自动部署 / check (push) Waiting to run
CI检查 + 自动部署 / deploy (push) Blocked by required conditions
重启聊天服务 / restart (push) Waiting to run
chore: import sanitized domestic snapshot for REPO-002
Source snapshot: ca48d3ddf926d79aa138306164169baf764bb829
2026-07-17 15:54:41 +08:00

40 lines
1.3 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ═══════════════════════════════════════════════
# 🔺 Sovereign: TCS-0002∞ | Root: SYS-GLW-0001
# 📜 Copyright: 国作登字-2026-A-00037559
# ═══════════════════════════════════════════════
name: "🌊 Persona Studio · 对话处理"
# 工作流存根 · 对话消息处理
# 实际对话由 persona-studio/backend/routes/chat.js + persona-engine.js 处理
# 此工作流用于异步任务和审计
on:
workflow_dispatch:
inputs:
dev_id:
description: '体验者编号EXP-XXX'
required: true
task_type:
description: '任务类型'
required: false
default: 'chat'
permissions:
contents: read
jobs:
process:
name: "💬 对话处理"
runs-on: ubuntu-latest
steps:
- name: 📥 检出代码
uses: actions/checkout@v4
- name: 📝 记录对话事件
run: |
echo "📝 对话事件"
echo " 体验者: ${{ github.event.inputs.dev_id }}"
echo " 任务类型: ${{ github.event.inputs.task_type }}"
echo " 时间: $(date -u +%Y-%m-%dT%H:%M:%SZ)"
echo "✅ 事件已记录"