Publish IT Camp article and add custom 404#45
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
indopensource-org | d171147 | Commit Preview URL Branch Preview URL |
Jul 21 2026, 07:42 AM |
|
Warning Review limit reached
Next review available in: 36 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThe changes increase content sync frequency, add and revise blog content, introduce centered page-header styling, and add a custom localized 404 page served for missing static assets. ChangesContent synchronization
Site navigation and presentation
Estimated code review effort: 2 (Simple) | ~10 minutes Sequence Diagram(s)sequenceDiagram
participant Wrangler
participant 404Page
participant BaseLayout
participant PageHeader
participant BaseButton
Wrangler->>404Page: Serve 404-page for missing assets
404Page->>BaseLayout: Render noindex, nofollow layout
404Page->>PageHeader: Render 404 heading and message
404Page->>BaseButton: Render home and projects links
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ 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 |
There was a problem hiding this comment.
Code Review
This pull request adds a new blog post about IT Camp 2026, introduces a centering option to the PageHeader component, and implements a custom 404 error page configured via Wrangler. Additionally, the README documentation was updated to reflect an hourly sync schedule. However, as noted in the review, the actual GitHub Actions workflow file was not updated to match this new schedule, which could lead to a discrepancy between the documentation and the actual execution.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (1)
.github/workflows/sync-content.yml (1)
17-17: 🩺 Stability & Availability | 🔵 Trivial | ⚡ Quick winSerialize hourly sync runs before enabling this frequency.
This job performs
npm ci, content synchronization, a build, and a push. If a run exceeds 60 minutes or overlaps a manual dispatch, concurrent checkouts can race and one push may fail. Add a workflow-level concurrency group withcancel-in-progress: false.Proposed configuration
concurrency: group: sync-content cancel-in-progress: false🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In @.github/workflows/sync-content.yml at line 17, Add workflow-level concurrency settings to the sync-content workflow using a stable group such as sync-content and set cancel-in-progress to false, ensuring scheduled and manually dispatched runs are serialized rather than canceled or overlapping.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@src/data/blog-posts.json`:
- Line 18: In src/data/blog-posts.json at lines 18-18, correct the Indonesian
copy by changing “dimana” to “di mana” and “alat alat” to “alat-alat”; at lines
56-56, rewrite “Contoh paling populer Linux, menjalankan...” as “Contoh paling
populer adalah Linux, yang menjalankan...”.
---
Nitpick comments:
In @.github/workflows/sync-content.yml:
- Line 17: Add workflow-level concurrency settings to the sync-content workflow
using a stable group such as sync-content and set cancel-in-progress to false,
ensuring scheduled and manually dispatched runs are serialized rather than
canceled or overlapping.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: a54894f3-cbc6-4209-9bca-4d03c5a5beaf
📒 Files selected for processing (7)
.github/workflows/sync-content.ymlREADME.mdsrc/components/PageHeader.astrosrc/data/blog-posts.jsonsrc/pages/404.astrosrc/pages/blog/[...slug].astrowrangler.jsonc
|
@codex review |
|
Codex Review: Didn't find any major issues. Nice work! Reviewed commit: ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
|
@codex review |
|
Codex Review: Didn't find any major issues. Keep it up! Reviewed commit: ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
Ringkasan
Dampak
Artikel IT Camp tersedia pada URL publik, pembaruan blog masuk ke main lebih cepat, dan URL tidak ditemukan tidak lagi menghasilkan respons kosong. Production tetap dipromosikan melalui branch release.
Verifikasi
npm test— 20 tes lulusnpm run build— 109 halaman, tanpa error/warningnpx wrangler deploy --dry-run— berhasilSummary by CodeRabbit
New Features
Improvements
Documentation