返回 Skill 列表
extension
分类: 开发与工程无需 API Key

gh-listing-milestones

列出仓库中的里程碑。用于跟踪针对发布目标的进度。

person作者: jakexiaohubgithub

Listing GitHub Milestones

Purpose

Retrieves milestones using the gh api or gh issue list (via JSON) as there isn't a direct gh milestone list.

1. Safety & Verification

  • API Use: Requires making a GET request to the milestones endpoint.

2. Common Workflows

Workflow: List Active Milestones

Fetches milestones and their states.

Command:

gh api repos/:owner/:repo/milestones --jq '.[] | {number: .number, title: .title, state: .state}'