v0.5.91: docs i18n, turborepo upgrade#3228
Conversation
waleedlatif1
commented
Feb 16, 2026
- feat(i18n): change lockfile (feat(i18n): change lockfile #3216)
- fix(docs): update docs and disable i18n action, upgrade turborepo (fix(docs): update docs and disable i18n action, upgrade turborepo #3227)
* fix: update i18n.lock * feat(docs): enhance documentation with new sections on file handling, form deployment, quick reference, agent skills, and A2A integration
) * feat(i18n): change lockfile (#3216) * fix: update i18n.lock * feat(docs): enhance documentation with new sections on file handling, form deployment, quick reference, agent skills, and A2A integration * fix(docs): update docs and disable i18n action * fix build --------- Co-authored-by: cherkanov_art <45258907+cherkanovart@users.noreply.github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
# Conflicts: # apps/docs/content/docs/fr/tools/onepassword.mdx # apps/docs/content/docs/ja/tools/enrich.mdx # apps/docs/content/docs/ja/tools/google_maps.mdx # apps/docs/content/docs/ja/tools/onepassword.mdx # apps/docs/content/docs/zh/tools/enrich.mdx # apps/docs/content/docs/zh/tools/google_forms.mdx # apps/docs/content/docs/zh/tools/google_maps.mdx # apps/docs/content/docs/zh/tools/notion.mdx # apps/docs/content/docs/zh/tools/onepassword.mdx # apps/docs/content/docs/zh/tools/tinybird.mdx
Greptile SummaryThis PR makes two changes: (1) disables the scheduled cron trigger for the i18n workflow, making it manual-only via
Confidence Score: 4/5
Important Files Changed
Flowchartflowchart TD
A[i18n.yml Workflow] -->|"Before: cron + manual"| B[Scheduled Weekly Trigger]
A -->|"Before: cron + manual"| C[Manual Trigger]
A -->|"After: manual only"| D[Manual Trigger Only]
E[MDX Doc Files] -->|"Before: raw braces"| F["{ } interpreted as JSX"]
F --> G[Rendering Error]
E -->|"After: escaped braces"| H["Backslash escaping \{ \}"]
E -->|"After: escaped braces"| I["Backtick wrapping `{ }`"]
H --> J[Renders Correctly]
I --> J
Last reviewed commit: 8ebe753 |
Additional Comments (1)
Now that the scheduled cron trigger has been removed (line 4), the PR body template still references "weekly" in multiple places: "Automated weekly translation updates" (line 68), "scheduled weekly i18n workflow" (line 70), and the branch name Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |