feat: improve local container Docker test support#144
Conversation
|
Codex review: needs real behavior proof before merge. Latest ClawSweeper review: 2026-05-22 09:26 UTC / May 22, 2026, 5:26 AM ET. Workflow note: Future ClawSweeper reviews update this same comment in place. How this review workflow works
Summary Reproducibility: yes. for the PR defect: source inspection shows multi-pattern PR rating Rank-up moves:
What the crustacean ranks mean
Shiny media proof means a screenshot, video, or linked artifact directly shows the changed behavior. Runtime, network, CSP, and security claims still need visible diagnostics. Real behavior proof Risk before merge
Maintainer options:
Next step before merge Security Review findings
Review detailsBest possible solution: Keep the feature direction, but fix Do we have a high-confidence way to reproduce the issue? Yes for the PR defect: source inspection shows multi-pattern Is this the best way to solve the issue? No, not as-is. The overall feature path is maintainable, but Label changes:
Label justifications:
Full review comments:
Overall correctness: patch is incorrect What I checked:
Likely related people:
Codex review notes: model gpt-5.5, reasoning high; reviewed against 4bea91906edc. |
5b7bace to
e5dfadf
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 5b7bace8ff
ℹ️ 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".
| arg := strings.TrimSpace(strings.TrimSuffix(strings.TrimPrefix(expr, "hashFiles("), ")")) | ||
| arg = strings.Trim(arg, `'"`) | ||
| if !validLocalActionsHashPattern(arg) { | ||
| return "", true | ||
| } |
There was a problem hiding this comment.
Parse multi-pattern hashFiles arguments correctly
hashFiles accepts comma-separated patterns (for example hashFiles('**/package-lock.json', '**/Gemfile.lock')), but this implementation trims the full argument into a single pattern string and passes it to one-pattern matching. In that case the comma/quote characters remain part of the pattern, no files match, and the function returns an empty hash even when matching files exist. That silently changes interpolated values used in keys/conditions during local hydration and can cause incorrect cache-key behavior compared with GitHub Actions.
Useful? React with 👍 / 👎.
|
ClawSweeper PR egg 🎁 Pass real behavior proof to wake the egg and unlock a hatchable treat. Where did the egg go?
|
Summary
Verification