Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moviestoreguy/go-gitprs
https://github.com/moviestoreguy/go-gitprs
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/moviestoreguy/go-gitprs
- Owner: MovieStoreGuy
- Created: 2018-04-17T21:30:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-11T21:38:56.000Z (over 6 years ago)
- Last Synced: 2024-04-17T18:07:50.298Z (7 months ago)
- Language: Go
- Size: 1000 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Git PRs
A Golang application to notify you if there is any outstanding PRs that require your attention
## Install
To install the tool, you'll need golang installed on your machine and you can simply
```sh
go get -u github.com/MovieStoreGuy/go-gitprs
```## Usage
To fetch all PRs that you have opened simply:
```sh
go-gitprs --token ${GITHUB_TOKEN}
```
Where the Github token is a oauth token from github that has repo read access.To fetch all PRs opened by an organisation you belong to, simply:
```sh
go-gitprs --token ${GITHUB_TOKEN} --org
```This will fetch all open PRs that you could review within your github organisation.
Then to filter based off a given team, simply:
```sh
go-gitprs --token ${GITHUB_TOKEN} --org --team
```