https://github.com/abmantis/github_reviews_dashboard
A CLI dashboard for Github pull requests reviews
https://github.com/abmantis/github_reviews_dashboard
Last synced: about 2 months ago
JSON representation
A CLI dashboard for Github pull requests reviews
- Host: GitHub
- URL: https://github.com/abmantis/github_reviews_dashboard
- Owner: abmantis
- License: mit
- Created: 2023-12-20T19:47:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-25T12:09:31.000Z (3 months ago)
- Last Synced: 2025-03-28T19:12:15.684Z (about 2 months ago)
- Language: Python
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Description
This shows an overview of all the PRs in a repo and their review statuses.
It works best with a flow where:
- reviewers always leave an approving review or request changes.
- authors always request a re-review from reviewers when ready.When that flow is used, knowing if a PR is waiting for your review is easy: just look for a ⚠️ sign!
## Symbols
- ✉️: PR without a reviewed by you.
- ✅: PR with a review from you (either approving or requesting changes).
- ⚠️: PR with a (re-)review requested from you.
- ➡️: Your PR (also used as an aid to point out your name in the reviewrs list).# Setup
```bash
pip install git+https://github.com/abmantis/github_reviews_dashboard
```# Usage
```bash
github-reviews-dashboard --hostname $GITHUB_HOST --owner $REPO_OWNER --repository $REPO_NAME
```You can also pass `--use-cli` to use Github CLI for requests.
Check other options with `python dashboard.py --help`.