Conversation
|
CodeAnt AI is reviewing your PR. |
Sequence DiagramThis PR adds a new TESTOMATIO_S3_NO_ACL flag and changes upload logic to avoid sending ACL for IAM roles, GCS, or when explicitly disabled; if an upload fails due to unsupported ACL, the uploader retries without the ACL and returns the artifact link on success. sequenceDiagram
participant Uploader
participant Config
participant S3
Uploader->>Config: Read S3_BUCKET, PRIVATE_ARTIFACTS, TESTOMATIO_S3_NO_ACL, endpoint, credentials
Uploader->>S3: Build upload params (Bucket, Key, Body[, ACL?])
note right of Uploader: ACL added only if not sessionToken, not GCS, and not TESTOMATIO_S3_NO_ACL
Uploader->>S3: Attempt upload (with ACL)
alt Upload fails due to unsupported ACL (InvalidArgument/AccessDenied)
Uploader->>S3: Retry upload without ACL
S3-->>Uploader: Uploaded (link)
else Upload succeeds
S3-->>Uploader: Uploaded (link)
end
Generated by CodeAnt AI |
Nitpicks 🔍
|
|
CodeAnt AI finished reviewing your PR. |
|
CodeAnt AI is running Incremental review |
|
CodeAnt AI Incremental review completed. |
1264141 to
dfb2e49
Compare
DavertMik
left a comment
There was a problem hiding this comment.
Sorry I don't understand what is ACL
Maybe this is already solved by sharing credentials for public reports?
DavertMik
left a comment
There was a problem hiding this comment.
Ok, but we need to test this on GCS
CodeAnt-AI Description
Avoid sending ACL on artifact uploads; retry without ACL and improve logs; update publish workflow
What Changed
Impact
✅ Fewer artifact upload failures for GCS and buckets with Bucket Owner Enforced✅ Clearer upload error logs showing file path and size✅ More reliable automated npm publishing with tag detection and OIDC-based credentials💡 Usage Guide
Checking Your Pull Request
Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.
Talking to CodeAnt AI
Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:
This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.
Example
Preserve Org Learnings with CodeAnt
You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:
This helps CodeAnt AI learn and adapt to your team's coding style and standards.
Example
Retrigger review
Ask CodeAnt AI to review the PR again, by typing:
Check Your Repository Health
To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.