Add in the ignoreValidation to the action yaml#131
Conversation
And requesting for it causes an error spew.
|
Caution Review failedThe pull request is closed. WalkthroughAdds a new optional input Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related issues
Possibly related PRs
Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 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 (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
action.yml (1)
34-38: Good addition; resolves boolean parsing error. Add minor metadata tweaks.
- Addition looks correct and consistent with other inputs.
- Nit: Quote boolean defaults as strings in action metadata to avoid YAML 1.2 edge cases and to align with common Actions conventions. Also tighten the description to match the pattern used elsewhere (“If true, …”).
Apply:
ignoreValidation: - description: 'Bypasses validation errors (not recommended)' - default: false + description: 'If true, bypasses validation errors. Not recommended.' + default: 'false' required: false
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
action.yml(1 hunks)
🔇 Additional comments (1)
action.yml (1)
34-38:ignoreValidationinput consumption verified; no action required. Verifiedcore.getBooleanInput('ignoreValidation')is called in src/main.js and in the compiled dist/index.js, so the new input is read at runtime.
neilenns
left a comment
There was a problem hiding this comment.
Thanks for the PR! One little change to align with other descriptions.
Fixes #132
Otherwise the latest version cannot be used, for you'll get this error.
Summary by CodeRabbit
New Features
Chores