Merged
Conversation
| run: echo "Skipping AI PR review in merge queue context." | ||
| - name: Skip on queue refs | ||
| if: github.event_name == 'merge_group' || github.event_name == 'push' | ||
| run: echo "Skipping review in queue context" |
There was a problem hiding this comment.
🔴 [P1] .github/workflows/codex-review.yml:22 codex review no longer marked optional
Current code:
- name: Run codex review
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false && github.event.pull_request.head.repo.fork == false
uses: p6m7g8-actions/codex@mainProblem: Action failures now fail the workflow, blocking merges when the Codex service or secret is unavailable.
Fix:
- name: Run codex review
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false && github.event.pull_request.head.repo.fork == false
continue-on-error: true
uses: p6m7g8-actions/codex@mainSigned-off-by: github-actions <github-actions@github.com>
1887410 to
f517f5b
Compare
|
Codex Autonomous Review:
The patch still contains a blocking regression already noted in prior review comments (Codex review step no longer marked continue-on-error), and no other issues were found. Tip: comment with "/codex address comments" to attempt automated fixes for unresolved review threads. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Distributes managed workflow files from p6m7g8-actions/p6-gh-distributor.