Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/cli-version-checker.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion .github/workflows/cli-version-checker.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ For each update, analyze intermediate versions:
- **Codex**: Fetch release notes from https://github.com/openai/codex/releases/tag/rust-v{VERSION}
- Parse the "Highlights" section for key changes
- Parse the "PRs merged" or "Merged PRs" section for detailed changes
- Extract links to pull requests and issues for context
- **CRITICAL**: Convert PR/issue references (e.g., `#6211`) to full URLs since they refer to external repositories (e.g., `https://github.com/openai/codex/pull/6211`)
- **GitHub MCP Server**: Fetch release notes from https://github.com/github/github-mcp-server/releases/tag/v{VERSION}
- Parse release body for changelog entries
- **CRITICAL**: Convert PR/issue references (e.g., `#1105`) to full URLs since they refer to external repositories (e.g., `https://github.com/github/github-mcp-server/pull/1105`)
Comment on lines +72 to +75

Copilot AI Nov 11, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The instruction mentions 'PR/issue references' but only provides an example URL format for pull requests (/pull/). Consider adding an example for issue references as well (e.g., https://github.com/openai/codex/issues/1234) to cover both cases mentioned in the text.

Suggested change
- **CRITICAL**: Convert PR/issue references (e.g., `#6211`) to full URLs since they refer to external repositories (e.g., `https://github.com/openai/codex/pull/6211`)
- **GitHub MCP Server**: Fetch release notes from https://github.com/github/github-mcp-server/releases/tag/v{VERSION}
- Parse release body for changelog entries
- **CRITICAL**: Convert PR/issue references (e.g., `#1105`) to full URLs since they refer to external repositories (e.g., `https://github.com/github/github-mcp-server/pull/1105`)
- **CRITICAL**: Convert PR/issue references (e.g., `#6211`) to full URLs since they refer to external repositories (e.g., `https://github.com/openai/codex/pull/6211` for PRs, `https://github.com/openai/codex/issues/1234` for issues)
- **GitHub MCP Server**: Fetch release notes from https://github.com/github/github-mcp-server/releases/tag/v{VERSION}
- Parse release body for changelog entries
- **CRITICAL**: Convert PR/issue references (e.g., `#1105`) to full URLs since they refer to external repositories (e.g., `https://github.com/github/github-mcp-server/pull/1105` for PRs, `https://github.com/github/github-mcp-server/issues/1105` for issues)

Copilot uses AI. Check for mistakes.
- **Copilot CLI**: Repository may be private, skip release notes if inaccessible
- **Claude Code**: No public repository, rely on NPM metadata and CLI help output

Expand Down Expand Up @@ -124,6 +125,12 @@ Include for each updated CLI:
- **INCORRECT**: `https://www.npmjs.com/package/@github/copilot` (has backticks)
- **INCORRECT**: https://www.npmjs.com/package/`@github/copilot` (package name wrapped in backticks)

**Pull Request Link Formatting**:
- **CRITICAL**: Always use full URLs for pull requests that refer to external repositories
- **CORRECT**: https://github.com/openai/codex/pull/6211
- **INCORRECT**: #6211 (relative reference only works for same repository)
- When copying PR references from release notes, convert `#1234` to full URLs like `https://github.com/owner/repo/pull/1234`

Copilot AI Nov 11, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For consistency with line 72 and 75, this instruction should also mention issue references in addition to PR references, and use 'PR/issue references' to match the terminology used earlier in the document.

Suggested change
- When copying PR references from release notes, convert `#1234` to full URLs like `https://github.com/owner/repo/pull/1234`
- When copying PR/issue references from release notes, convert `#1234` to full URLs like `https://github.com/owner/repo/pull/1234` for PRs or `https://github.com/owner/repo/issues/1234` for issues

Copilot uses AI. Check for mistakes.

Template structure:
```
# Update [CLI Name]
Expand Down
Loading