Fix CLAUDE.md: use gh pr merge --auto, not --merge-queue

The --merge-queue flag doesn't exist in gh CLI. The correct flag is
--auto, which routes through the merge queue when it's enabled.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-26 19:02:27 +01:00
parent 746b09276c
commit eccc274652
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9

View file

@ -113,7 +113,7 @@ pnpm db:studio # Open Drizzle Studio (DB browser)
- Use the merge queue to auto-merge when CI passes:
```bash
gh pr create --title "..." --body "..."
gh pr merge --merge-queue
gh pr merge --auto
```
### Stacking PRs (for fast local iteration)