https://github.com/peter554/prs
CLI to list GitHub PRs
https://github.com/peter554/prs
Last synced: about 1 month ago
JSON representation
CLI to list GitHub PRs
- Host: GitHub
- URL: https://github.com/peter554/prs
- Owner: Peter554
- Created: 2024-02-11T10:42:11.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-19T12:11:36.000Z (over 2 years ago)
- Last Synced: 2024-10-19T11:28:44.812Z (almost 2 years ago)
- Language: Python
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# prs
CLI to list GitHub PRs.
Pre-requisites:
* Install and set up the [GitHub CLI](https://cli.github.com/)
* Install [pipx](https://pipx.pypa.io/stable/)
* Python 3.11 installed (e.g. with [pyenv](https://github.com/pyenv/pyenv))
Install:
* Clone the repo
* `pipx install ./path/to/repo`
```bash
# PRs I have created or am assigned to
prs mine
prs m
# PRs I am requested to review (excluding teams)
prs review-requested
prs rr
prs
# PRs I am requested to review (including teams)
prs review-requested-all
prs rra
# PRs I have reviewed (updated in the last 2 weeks)
prs reviewed
prs r
# PRs a team is requested to review
prs team-review-requested:
prs trr:
prs trr:
# Add a team alias
prs add-team-alias
# Closed/merged PRs
prs --closed
prs -c
```