-
Notifications
You must be signed in to change notification settings - Fork 87
fix(ci): only trigger release for mcpm update #262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughRemoves multiple Codex-related configuration and workflow files, narrows Semantic Release triggers to specific paths, and updates Claude Desktop MCP integration to pass an optional alias through a router server formatting method. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant Manager as ClaudeDesktopManager
participant Router as format_server_url_with_proxy_headers
participant Config as ServerConfig
User->>Manager: activate_profile(profile_name, base_url, alias_name?)
Manager->>Manager: _format_router_server(profile_name, base_url, alias_name?)
note right of Manager: Updated: forwards optional alias_name
Manager->>Router: format_server_url_with_proxy_headers(client_key, profile_name, base_url, alias_name?)
Router-->>Manager: ServerConfig
Manager-->>User: ServerConfig
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested labels
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (7)
💤 Files with no reviewable changes (6)
🔇 Additional comments (1)
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||
|
🎉 This PR is included in version 2.8.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
User description
PR Type
Enhancement
Description
Restrict semantic release to only trigger on mcpm package changes
Remove codex configuration and session files
Diagram Walkthrough
File Walkthrough
semantic-release.yml
Add path-based triggering for semantic release.github/workflows/semantic-release.yml
src/mcpm/**andpyproject.tomlchanges
config.toml
Remove codex configuration.github/codex/home/config.toml
rollout-2025-06-30T06-58-13-60c64452-c812-4ba8-ab56-6f2e1247bdd8.jsonl
Remove codex session logs.github/codex/home/sessions/rollout-2025-06-30T06-58-13-60c64452-c812-4ba8-ab56-6f2e1247bdd8.jsonl
codex-attempt.md
Remove codex attempt template.github/codex/labels/codex-attempt.md
codex-review.md
Remove codex review template.github/codex/labels/codex-review.md
codex-triage.md
Remove codex triage template.github/codex/labels/codex-triage.md
Summary by CodeRabbit
Bug Fixes
Chores