You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The thin streaming Caretaker workflow has no actions/checkout step, so actions/setup-python@v5 with cache: "pip" errors out before pip ever runs:
##[error]No file in /home/runner/work/<repo>/<repo> matched to [**/requirements.txt or **/pyproject.toml], make sure you have checked out the target repository
Drop the line. The thin client installs exactly one wheel (caretaker) per scheduled run; pip caching adds negligible value, and adding a checkout / synthetic dependency file purely to enable cache would be more code for no benefit.
The upstream template was fixed in ianlintner/caretaker#636. This PR ports the same one-line change to the deployed copy in this repo, since caretaker's bootstrap agent only writes templates on initial install.
To have your review surface in the GitHub Reviews tab (not just an issue comment), end your reply with the marker line <!-- caretaker:review-result --> followed by a fenced JSON block tagged caretaker-review. Example:
Caretaker will pick the JSON up on its next cycle and post a formal PR review (with inline comments) attributed to the-care-taker[bot] so it counts in the Reviews tab. If you don't include the marker, your review still posts as a regular comment, just outside the Reviews tab.
Delegated by caretaker's PRReviewerAgent via anthropics/claude-code-action hand-off.
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
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.
The thin streaming
Caretakerworkflow has noactions/checkoutstep, soactions/setup-python@v5withcache: "pip"errors out before pip ever runs:Drop the line. The thin client installs exactly one wheel (
caretaker) per scheduled run; pip caching adds negligible value, and adding a checkout / synthetic dependency file purely to enable cache would be more code for no benefit.The upstream template was fixed in ianlintner/caretaker#636. This PR ports the same one-line change to the deployed copy in this repo, since caretaker's bootstrap agent only writes templates on initial install.
🤖 Generated with Claude Code