Conversation
Move template-builder from standalone repo into superdoc monorepo. Add CI workflows for validation and demo deployment.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ccc4964a25
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| name: Deploy Demos | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] |
There was a problem hiding this comment.
Add write permissions for GitHub Pages deploy
This workflow uses peaceiris/actions-gh-pages@v4 to push to the gh-pages branch, but there is no permissions block granting contents: write. If the repo/org default for GITHUB_TOKEN is read‑only (a common security setting), the deploy step will fail with a 403 when it tries to push. Consider adding permissions: { contents: write } at the workflow or job level (and pages: write if you later switch to the Pages API flow).
Useful? React with 👍 / 👎.
No description provided.