docs: PRs target main; retire the test-branch PR flow#750
Conversation
All PRs now open against main. The test branch is no longer a PR target and the sync-test-with-main task-start ritual is removed. Context: recoupable/chat#1841 process cleanup. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
No issues found across 1 file
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant Dev as Developer
participant Agent as Claude Code Agent
participant GH as GitHub
participant Local as Local Git Repo
Note over Dev,Local: NEW: test branch retired – PRs target main directly
Dev->>Agent: Start new task
Agent->>Local: git checkout main && git pull origin main
Agent->>Local: git checkout -b feature-branch
Agent-->>Dev: Ready to work
Note over Agent,GH: Push commits and open PR
Agent->>Local: git push -u origin feature-branch
Agent->>GH: gh pr create --base main
GH-->>Agent: PR URL
Agent-->>Dev: PR ready – wait for approval
Auto-approved: Updates AGENTS.md to target main branch and remove test-branch workflow. Only documentation change, no code or logic modified.
Re-trigger cubic
What
PRs in this repo now target
main. Thetestbranch is retired as a PR target; the sync-test-with-maintask-start ritual is removed from the agent instructions.Why
Requested by @sweetmantech 2026-07-03 during recoupable/chat#1841: four PRs were opened against
testbecause these instructions mandated it; the convention is now main-only. Sibling PRs update the other repos' instructions and the dev skills (recoupable/skills#68).🤖 Generated with Claude Code
Summary by cubic
Set
mainas the PR base and retire thetestbranch flow. Removes the start-of-tasktestsync step to avoid mis-targeted PRs and simplify agent instructions.main(e.g.,gh pr create --base main).testbranch and the old sync-with-mainritual.Written for commit 846dd98. Summary will update on new commits.