A QuickSheet extension that shows your GitHub pull requests on your desktop wallpaper. Never miss a review request again.
Writes a live PR dashboard into the grid, starting at the cell where you invoke it. Refreshes every 2 minutes.
In any QuickSheet cell:
ext: github:Deskworks/quicksheet-ghpr
Requires gh CLI installed and authenticated (gh auth login).
Type one of these in a cell:
| Cell contents | Shows |
|---|---|
ghpr: |
PRs requesting your review (default) |
ghpr: mine |
Your authored open PRs |
ghpr: all |
Both review-requested and authored |
ghpr: owner/repo |
All open PRs for a specific repo |
Type ghpr: in cell A1. The extension writes a header row and one row per PR, starting at A1:
| A | B | C | D | E | |
|---|---|---|---|---|---|
| 1 | PR | Repo | Title | Status | Age |
| 2 | #42 | myapp | feat: add OAuth login | 👀 | 2h |
| 3 | #38 | infra | fix: k8s memory limits | 🔴 | 1d |
| 4 | #15 | docs | update API reference | ✅ | 3d |
Up to 15 PRs are written. When there's nothing to review, A1 gets ✅ No PRs need attention.
| Icon | Meaning |
|---|---|
| 👀 | Review requested (needs your action) |
| 🔴 | Changes requested |
| ✅ | Approved |
| 📝 | Draft |
| ⏳ | Pending |
Uses gh search prs under the hood — leverages your existing GitHub CLI authentication. No tokens to configure, no OAuth flows. If gh works, this works.
Results are cached for 2 minutes to avoid API rate limits.
MIT