https://github.com/ryanwholey/github-review-requests
A CLI to notify on PR review request
https://github.com/ryanwholey/github-review-requests
github
Last synced: about 2 months ago
JSON representation
A CLI to notify on PR review request
- Host: GitHub
- URL: https://github.com/ryanwholey/github-review-requests
- Owner: ryanwholey
- Created: 2022-01-08T18:33:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T03:24:29.000Z (over 3 years ago)
- Last Synced: 2025-06-15T01:39:58.959Z (about 1 year ago)
- Topics: github
- Language: Go
- Homepage: https://github.com/ryanwholey/github-review-requests
- Size: 96.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# github-review-requests
A CLI to send desktop notifications when new GitHub review requests are created.
## Install
```sh
brew install ryanwholey/formulas/github-review-requests
```
## Usage
```sh
grr --username --interval 5m
```
The CLI expects `GH_TOKEN` to be set in the environment.
### Flags
| Flag | Description | Required | Default |
|---|---|---|---|
| `--username\|-u` | GitHub username | `true` | `GH_USERNAME` env var, else `""` |
| `--storage\|-s` | Path to a storage file | `false` | `~/.github-review-request-storage`|
| `--interval\|-i` | Interval to poll for new requests (e.g. `30s`, `5m`, etc.). If zero, run once and exit. | `false` | `0` |
| `--clean\|-c` | Remove storage file on initialization | `false` | `false` |
## Release
```sh
git tag v0.0.0
git push --tags
```