ci: skip typecheck for workflow-only PRs#3619
Conversation
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📜 Recent review details⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (34)
🔇 Additional comments (1)
WalkthroughThis PR refines the PR checks workflow's path-filter configuration in Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
The
codepaths filter currently matches**minus a tiny exclusion list, so a PR that only touches.github/workflows/*.ymlstill flipscode == trueand runs typecheck (~2 min on the runner).Exclude
.github/**fromcode, then re-include justpr_checks.ymlandtypecheck.ymlso a change to either of those still triggers the full code check matrix.Effect:
all-checkstreats the skipped job as non-failure so the required status passes.pr_checks.ymlortypecheck.ymlthemselves still triggers typecheck.webapp,packages,internal,cli,sdk) already re-include the specific workflows that gate them, so they're unaffected.