chore: Add .mdx to all checks ignore list#23627
Conversation
WalkthroughThe PR updates .github/workflows/pr.yml by extending the has-files-requiring-all-checks exclusion patterns to include **.mdx, so MDX file changes are excluded from triggering the all-checks behavior. No other exclusions are modified. No exported or public entities are changed. Possibly related PRs
✨ 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
Status, Documentation and Community
|
262d12d
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/workflows/pr.yml (1)
36-36: Nit: prefer explicit “/.mdx” (and “**/.md”) for clarity; consider uppercase variants.**While
**.mdxworks with minimatch extglobs here,**/*.mdxis more conventional. If your repo may contain uppercase extensions, add**/*.MDXtoo.- - "!(**.md|**.mdx|.github/CODEOWNERS|docs/**|help/**|apps/web/public/static/locales/**/common.json|i18n.lock)" + - "!(**/*.md|**/*.MD|**/*.mdx|**/*.MDX|.github/CODEOWNERS|docs/**|help/**|apps/web/public/static/locales/**/common.json|i18n.lock)"
📜 Review details
Configuration used: Path: .coderabbit.yaml
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)
.github/workflows/pr.yml(1 hunks)
⏰ Context from checks skipped due to timeout of 180000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
- GitHub Check: Production builds / Build API v2
- GitHub Check: Production builds / Build Atoms
- GitHub Check: Production builds / Build API v1
- GitHub Check: Production builds / Build Docs
- GitHub Check: Tests / Unit
- GitHub Check: Production builds / Build Web App
- GitHub Check: Type check / check-types
- GitHub Check: Linters / lint
🔇 Additional comments (1)
.github/workflows/pr.yml (1)
36-36: MDX correctly added to ignore list for “all-checks”.This matches the existing extglob style and fulfills the PR goal: MDX-only changes won’t trigger the full suite.
E2E results are ready! |
We don't need to run all checks for
.mdxfiles.