A standalone macOS menu bar application to monitor your GitHub pull requests.
- Clone the repository and build:
go build -o pr-checker-app main.go
Alternatively, you can install the latest version directly:
go install github.com/rapatao/pr-checker-go@latestTo run the app in the background on login:
pr-checker-app --installTo remove the background service:
pr-checker-app --uninstallNote: This unloads the service from launchctl and removes the associated plist file.
Create a configuration file at ${HOME}/.pr-checker.yml:
services:
- name: GitHub
provider: github
token: <your-personal-access-token>
# Optional filters:
# author: <username>
# owner: <org-or-user>
# repositories:
# - username/repository-name- Real-time Monitoring: Automatically polls for PR updates every 30 minutes.
- Grouped View: PRs are organized by repository in the menu.
- Interactive: Click a repository to open its URL or a PR to open it directly in your browser.
- Manual Refresh: Force a check for new PRs at any time.
- Status: Easily view the total count of open PRs in your menu bar.