Add Jekyll GitHub Pages deployment workflow#112
Conversation
Source set to ./docs directory. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 185daf74f5
ℹ️ About Codex in GitHub
Your team has set up Codex to 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 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| on: | ||
| push: | ||
| branches: ["master"] |
There was a problem hiding this comment.
Trigger Pages deploy from the active main branch
The workflow only listens to pushes on master, but this repository’s active development branch is main, so normal merges will never start the Pages build/deploy job. In practice this makes the new auto-deploy path nonfunctional unless someone manually dispatches the workflow each time, which defeats the intended push-based deployment.
Useful? React with 👍 / 👎.
Summary
.github/workflows/jekyll-gh-pages.ymlto deploy Jekyll site from./docsto GitHub Pagesmasterand manual dispatch@codex review