ci: test docs workflow trigger on ellphi-0.1.2 - #111
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 48602c11fe
ℹ️ 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".
| branches: | ||
| - main | ||
| - docs/mkdocs-web-reference | ||
| - ellphi-0.1.2 |
There was a problem hiding this comment.
Restrict docs deploy trigger to main
Adding ellphi-0.1.2 to the push trigger causes every push to that release branch to run the deploy path (mkdocs gh-deploy --force), because deployment is gated only on github.event_name == 'push'. In practice this can overwrite the published docs with release-branch content while you only intended to validate CI there; use a non-deploy trigger (e.g., PR/workflow_dispatch) or branch-check the deploy step.
Useful? React with 👍 / 👎.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Switch the docs workflow push trigger from docs/mkdocs-web-reference to ellphi-0.1.2 so we can verify docs CI on the release branch before the version bump.