fix-failing-pipelines

仓库创建 2026年1月5日最近提交 2 天前SkillHot 收录 21 天前
▸ 精选理由

能自动发现并处理 CI 故障,减少运维人工干预时间。

▸ 风险提示

会触发 workflow 或修改仓库,需 actions/写入权限且可能引发破坏性变更。

这个 Skill 做什么

检测 babysitter 仓库 staging 分支上失败的 Actions 流程并尝试修复或触发修复流程。

自动检测 babysitter 仓库 staging 分支上哪些 GitHub Actions 失败,并尝试触发修复流程或派发修复命令来恢复管道。适合 CI 报错、工作流挂起或需要快速恢复测试/部署时使用。特点是能用 gh CLI 拉取最近运行记录并自动 dispatch 修复(比如触发 /babysitter:yolo)。

▸ 展开 SKILL.md 英文原文

This skill should be used when the user asks to "fix pipelines", "fix CI", "check staging pipelines", "fix failing workflows", "fix failing actions", or wants to find and fix failing GitHub Actions workflows on the staging branch of the babysitter repo.

开发编程CI修复GitHub Actions自动修复Claude Code
1.6k
Stars
94
Forks
40
仓库内 Skill
+111
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/a5c-ai/babysitter/main/.claude/skills/fix-failing-pipelines/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/a5c-ai/babysitter/main/.claude/skills/fix-failing-pipelines/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Fix Failing Pipelines

Check GitHub Actions workflows on the `staging` branch of https://github.com/a5c-ai/babysitter/actions, identify workflows whose most recent run is failing, and dispatch `/babysitter:yolo` to fix each one.

## Workflow

### Step 1: Fetch Most Recent Run Per Workflow

Use the `gh` CLI to list recent workflow runs on the `staging` branch:

```bash
gh run list --repo a5c-ai/babysitter --branch staging --limit 50 --json databaseId,workflowName,status,conclusion,createdAt,headBranch
```

Group the results by `workflowName`. For each workflow, keep only the **most recent** run (by `createdAt`). Discard workflows where the most recent run is still `in_progress` -- we only c
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有