Conversation
…oves Node-20 deprecation warnings) [skip ci]
…oves Node-20 deprecation warnings) [skip ci]
ci: migrate CodeQL runner to self-hosted ARC (develop)
fix(seo): stop advertising unbuilt locales; keep redirects on https
Greptile SummaryThe change limits the deployed documentation site to English, updates web-server redirect handling, and refreshes CI configuration. The Docusaurus configuration contains uncommented Yarn output at line 56, causing Confidence Score: 4/5Not safe to merge until the invalid configuration line is corrected, because the documentation build cannot complete. The failing build was reproduced with the same locale command used by the container, and an isolated corrected configuration completed the build and generated static files. Files Needing Attention: website/docusaurus.config.ts requires correction at line 56 and clarification of the locale-restoration instructions near line 60.
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.
Uncommented Yarn output breaks configuration
info Visit https://yarnpkg.com/... is not prefixed with //, so it is parsed as TypeScript configuration rather than maintenance guidance. Consequently, the container's yarn build --locale en command fails with a parse error before the documentation site can be generated. Remove the pasted output or comment it out. Also update the nearby restoration note to explicitly name the --locale en flag used in Dockerfile.everk8s.
Artifacts
- This non-mutating script ran the exact repository locale build and a corrected isolated-copy comparison, showing the malformed line and documentation flag behavior.
- Running `yarn build --locale en` in `/home/user/repo/website` exited 1 with Docusaurus's parse error at `docusaurus.config.ts:56:5`, proving the text is code rather than a comment.
- The same `yarn build --locale en` command in an isolated corrected copy exited 0 and generated static files, proving syntactically commented guidance restores the build path.
Promotion only.
🤖 Generated with Claude Code