Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 730df9e8a0
ℹ️ 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: | ||
| pull_request: | ||
| branches: [develop, master] |
There was a problem hiding this comment.
Include main in pull_request branch filter
This workflow only runs for PRs targeting develop or master, so pull requests into main will skip all CI checks from this file. In repositories where main is the active integration branch, this silently removes build/test coverage on incoming changes and lets regressions merge without the intended gate.
Useful? React with 👍 / 👎.
|
|
||
| on: | ||
| push: | ||
| branches: [master] |
There was a problem hiding this comment.
Trigger release workflow from main branch
The release job is configured to run only on pushes to master, so pushes to main will never publish artifacts or create a GitHub Release. If main is used for production merges, this breaks the automated release path entirely until someone runs the workflow manually.
Useful? React with 👍 / 👎.
No description provided.