Conversation
…oves Node-20 deprecation warnings) [skip ci]
…oves Node-20 deprecation warnings) [skip ci]
…oves Node-20 deprecation warnings) [skip ci]
…oves Node-20 deprecation warnings) [skip ci]
ci: migrate CodeQL runner to self-hosted ARC (develop)
ci: migrate CodeQL runner to self-hosted ARC (stage)
fix(seo): stop advertising unbuilt locales; keep redirects on https
chore: promote develop -> stage (docs SEO fixes)
Greptile SummaryThis change limits the published Docusaurus locales to English and updates deployment and CI configuration. The English documentation build is currently blocked because Confidence Score: 4/5Not safe to merge until the invalid configuration text is removed or commented out, because the production English documentation build cannot start. The failure was reproduced through both the repository typecheck and the production Docusaurus build, which independently fail while parsing the same line. Files Needing Attention:
What T-Rex did
|
| // | ||
| // Docusaurus renders a language dropdown for EVERY locale listed here, but the Docker build runs | ||
| // yarn run v1.22.22 | ||
| info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. and so only emits English. The other twelve were linked from every page |
There was a problem hiding this comment.
Locale guidance breaks configuration parsing
This pasted Yarn message is not prefixed with //, so TypeScript and Docusaurus parse it as configuration syntax rather than a comment. Both yarn typecheck and NODE_ENV=production yarn build --locale en fail while loading this file, preventing the English documentation site from being built. Remove or comment out the pasted output; the adjacent re-enablement note should also restore the omitted locale build flag.
Artifacts
TypeScript check failing on the locale configuration
- Ran `yarn typecheck` with the reported config lines captured first; TypeScript reports parse errors beginning at line 56, confirming the configuration is invalid.
Production Docusaurus locale build failing while loading the configuration
- Ran `NODE_ENV=production yarn build --locale en` with the same config lines captured first; Docusaurus rejects line 56 with a parse error, confirming the requested runtime build path is blocked.
Promotion only.
🤖 Generated with Claude Code