2026-05-10 13:12:44 +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 "✅ 事件已记录"