Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ 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".
.github/workflows/ci.yml
Outdated
| on: | ||
| push: | ||
| branches: [ master, next ] | ||
| pull_request: | ||
| branches: [ master, next ] |
There was a problem hiding this comment.
Ensure CI workflow targets the active main branch
The new GitHub Actions workflow only triggers on pushes and pull requests to master or next, but this repository’s primary branch is named main. As a result, CI will never execute for the default branch and changes can merge without any automated checks. Include main (or update the list entirely) in the branches filter so the workflow runs for the actual development branch.
Useful? React with 👍 / 👎.
No description provided.