-
Notifications
You must be signed in to change notification settings - Fork 87
chore: deprecate unused workflow #258
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
|
Caution Review failedThe pull request is closed. WalkthroughRenames and disables a deprecated GitHub Actions workflow. Replaces the issues-labeled trigger with a manual workflow_dispatch that includes a force_run input. Adds an if condition ensuring the job never runs by requiring force_run to be 'true' and appending && false. Changes
Sequence Diagram(s)sequenceDiagram
actor Maintainer
participant GH as GitHub Actions
participant Job as scrape-and-update job
Maintainer->>GH: workflow_dispatch(force_run)
GH->>Job: Evaluate if: (force_run == 'true' && false)
alt Condition false
GH--xJob: Skip job (workflow deprecated)
else Condition true (unreachable)
Job->>Job: Execute steps
end
note over GH,Job: The added "&& false" ensures the job never runs.
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Suggested labels
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨No code suggestions found for the PR. |
|
🎉 This PR is included in version 2.8.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
User description
https://github.com/pathintegral-institute/mcpm.sh/actions/runs/17486979191/workflow
PR Type
Other
Description
Deprecate MCP Server Info Bot workflow
Change trigger from issue labels to manual dispatch
Disable workflow execution with conditional logic
Update workflow name to indicate deprecation
Diagram Walkthrough
File Walkthrough
mcp-server-info-bot.yml
Deprecate and disable MCP Server Info Bot workflow.github/workflows/mcp-server-info-bot.yml
Summary by CodeRabbit