github-dashboard

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
Give me a GitHub dashboard update.
为我生成一份GitHub控制面板更新报告。

Phase 1: Notifications Analysis

第一阶段:通知分析

  1. Fetch notifications:
    gh api notifications
  2. Group by repository and type, prioritise by: direct mentions, review requests, CI failures, issue updates
  1. 获取通知:
    gh api notifications
  2. 按仓库和类型分组,优先级排序:直接提及、审核请求、CI失败、问题更新

Phase 2: PR Status Check

第二阶段:PR状态检查

  1. Check open PRs:
    gh pr list --author @me --state open
  2. For each: review status, CI status, merge conflicts, time since update
  3. List PRs needing action
  1. 查看已打开的PR:
    gh pr list --author @me --state open
  2. 针对每个PR:审核状态、CI状态、合并冲突、上次更新时间
  3. 列出需要处理的PR

Phase 3: Issue Triage

第三阶段:问题分类处理

  1. Issues assigned to me:
    gh issue list --assignee @me
  2. New issues in maintained repos needing triage
  3. Flag overdue or blocked issues
  1. 分配给我的问题:
    gh issue list --assignee @me
  2. 维护仓库中需要分类处理的新问题
  3. 标记逾期或被阻塞的问题

Phase 4: Summary Report

第四阶段:汇总报告

  1. Action items, review requests, CI failures, upcoming deadlines, quick stats
  2. Suggest priority order for the day
  1. 待办事项、审核请求、CI失败、即将到来的截止日期、快速统计数据
  2. 建议当日的处理优先级顺序

Auto-Exit When Standalone

独立运行时自动退出

IMPORTANT: If this command is being run as a standalone request, automatically exit after completing all phases successfully.
重要提示:如果此命令作为独立请求运行,在所有阶段成功完成后自动退出。