ci: add automation workflows and CLAUDE.md#19
Merged
greynewell merged 1 commit intomainfrom Feb 27, 2026
Merged
Conversation
- claude-auto-assign.yml: posts @claude comment on every new issue to trigger auto-implementation - claude-proactive.yml: runs hourly, scans codebase for bugs/features, files up to 3 issues per run - claude-pr-shepherd.yml: runs every 15 minutes, addresses CodeRabbit comments and merges clean PRs - claude.yml: add explicit allowed_tools including gh pr create - CLAUDE.md: standing instruction to always use gh pr create (not compare links) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review infoConfiguration used: Organization UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (5)
WalkthroughThis PR establishes an automated Claude integration system via GitHub Actions workflows. It introduces three new workflows for auto-assigning issues, shepherding PRs through review and merge, and proactively scanning for code issues, while simplifying the base Claude workflow configuration and adding workflow documentation. Changes
Sequence Diagram(s)sequenceDiagram
participant GH as GitHub<br/>(Event/API)
participant Claude as Claude<br/>(PR Shepherd)
participant Repo as Repository<br/>(Code/Branches)
GH->>Claude: Periodic trigger (15 min) or manual dispatch
Claude->>GH: Fetch open PRs (non-draft, ≤20)
Claude->>GH: Get unresolved CodeRabbit comments
Claude->>Repo: Checkout PR branch
Claude->>Repo: Read targeted files
Claude->>Claude: Analyze if comments addressed
alt Comments Addressed
Claude->>Repo: Apply fixes & commit
Claude->>GH: Push commit to PR
else Comments Unresolved
Claude->>GH: Reply explaining resolution status
end
Claude->>GH: Check PR CI status
alt CI Failing
Claude->>Repo: Attempt fixes
Claude->>Repo: Rebase if needed
else CI Green & Ready
Claude->>GH: Merge PR
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~22 minutes Possibly related PRs
Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
This was referenced Feb 27, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
These files were pushed after PR #6 was already merged, so they never landed on main.
Workflows
@claudecomment on every new issue, triggering auto-implementationallowed_toolsincludinggh pr createso Claude stops posting compare linksCLAUDE.md
Standing instruction: always use
gh pr create, never substitute a compare link.Once this merges, the scheduled workflows activate and PRs #13–18 should get shepherded automatically.
Generated with Claude Code
Summary by CodeRabbit
Release Notes
New Features
Documentation