CLDSRV-935: fix claude review#6199
Conversation
Hello leif-scality,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files
@@ Coverage Diff @@
## development/9.2 #6199 +/- ##
===================================================
- Coverage 84.50% 84.49% -0.01%
===================================================
Files 204 204
Lines 13217 13217
===================================================
- Hits 11169 11168 -1
- Misses 2048 2049 +1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
Standardize review.yml on Prettier's 2-space style across 9.2->9.4 so the Anthropic review action's "byte-identical to the default branch" check passes without a .prettierignore carve-out. Lands on 9.2 and waterfalls up so 9.2/9.3/9.4 converge on the same file.
9a7fc47 to
f30dee2
Compare
Branches have divergedThis pull request's source branch To avoid any integration risks, please re-synchronize them using one of the
Note: If you choose to rebase, you may have to ask me to rebuild |
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
|
ping |
Request integration branchesWaiting for integration branch creation to be requested by the user. To request integration branches, please comment on this pull request with the following command: Alternatively, the |
|
/create_integration_branches |
Integration data createdI have created the integration data for the additional destination branches.
The following branches will NOT be impacted:
You can set option The following options are set: create_integration_branches |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
The following options are set: create_integration_branches |
|
/create_pull_requests |
|
@bert-e create_pull_requests |
Integration data createdI have created the integration data for the additional destination branches.
The following branches will NOT be impacted:
Follow integration pull requests if you would like to be notified of The following options are set: create_pull_requests, create_integration_branches |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
The following options are set: create_pull_requests, create_integration_branches |
|
/approve |
In the queueThe changeset has received all authorizations and has been added to the The changeset will be merged in:
The following branches will NOT be impacted:
This pull request does not target the following hotfix branch(es) so they
There is no action required on your side. You will be notified here once IMPORTANT Please do not attempt to modify this pull request.
If you need this pull request to be removed from the queue, please contact a The following options are set: approve, create_pull_requests, create_integration_branches |
Queue build failedThe corresponding build for the queue failed:
Remove the pull request from the queue
|
|
I have successfully merged the changeset of this pull request
The following branches have NOT changed:
Please check the status of the associated issue CLDSRV-935. Goodbye leif-scality. |
Problem
Claude code reviews silently stop on PRs targeting
development/9.4. The Anthropicreview action requires
.github/workflows/review.ymlto be byte-identical to thedefault branch (
development/9.3). 9.4's copy had drifted to 2-space indentation(vs 9.3's 4-space) from a hand-resolved merge conflict when #6194 waterfalled in, so
validation failed and the job went green without posting a review.
Fix
Standardize
review.ymlon Prettier's native 2-space indentation and land it atthe root of the 9.x line (
development/9.2) so it waterfalls up to 9.3 and 9.4 —making 9.2 / 9.3 / 9.4 converge on a single, identical file.
Going to 2-space (rather than dragging 9.4 back to 4-space) means the file matches
Prettier's default style and the six other workflow files, so no
.prettierignorecarve-out is needed to keep the drift from recurring.
Notes
development/9.2so the change waterfalls up the whole 9.x line; the defaultbranch (9.3) becomes 2-space via the waterfall, which is exactly what the review
action validates against.
review.ymlis byte-identical to 9.4's current copy, so the waterfallconverges with no conflict.
review.ymlis the only branch with the file in {9.2, 9.3, 9.4}; 9.0/9.1 don't have it.