mirror of
https://github.com/facebook/rocksdb.git
synced 2026-07-07 14:47:40 +08:00
cc8d9ea04d
Summary: - Upgrade the Claude review workflow models and add complexity-based thinking budget selection for the main review run. - Keep AI review comments tied to the reviewed commit and restructure long reviews so high-severity findings stay visible while details live in a collapsible section. - Add early auto-trigger gating plus Codex review/comment workflows, including shared comment-building and parsing helpers. ## Testing - Not run. The branch refresh was a no-op rebase onto current `upstream/main`, and no new code changes were made during this task. Pull Request resolved: https://github.com/facebook/rocksdb/pull/14659 Reviewed By: pdillinger Differential Revision: D102224743 Pulled By: xingbowang fbshipit-source-id: 39c25494062cbcd52d3e85f8a859b5a3907c758e
26 lines
622 B
YAML
26 lines
622 B
YAML
# Codex Code Review — Comment Posting Workflow
|
|
#
|
|
# Thin wrapper around .github/workflows/ai-review-comment.yml so the provider
|
|
# specific workflow name stays stable while the shared implementation lives in
|
|
# one reusable workflow.
|
|
|
|
name: Post Codex Review Comment
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Codex Code Review"]
|
|
types: [completed]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
review-comment:
|
|
uses: ./.github/workflows/ai-review-comment.yml
|
|
with:
|
|
provider: codex
|
|
result_artifact_name: codex-review-result
|
|
comment_file: codex-review-comment.md
|
|
secrets: inherit
|