| name | list-pulls |
| description | List and show Gitea/Forgejo pull requests — filters, fields, detail views, and finding PRs needing review. |
| user-invokable | true |
List Pull Requests
List
tea pulls list -o simple
tea pulls list --state all -o simple
tea pulls list --output json
tea pulls list --fields "index,title,state,author,base,head,labels"
Show
tea pulls 15
tea pulls 15 --comments
Find PRs Needing Review
tea pulls list --output json | \
jq '.[] | select(.labels | map(.name) | index("needs-review")) | {index, title, author: .poster.login}'
Forks and Upstream PRs
See pull-request-forks.
Tips
- Prefer
-o simple for listing; use --output json only when parsing with jq
tea issues list --kind pulls searches PRs with all issue filters (labels, milestones, etc.)