Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vinayakshnd/gogetgithub
Webapp interacting with Github repo to create pull requests using Github APIs
https://github.com/vinayakshnd/gogetgithub
github-api golang
Last synced: about 2 months ago
JSON representation
Webapp interacting with Github repo to create pull requests using Github APIs
- Host: GitHub
- URL: https://github.com/vinayakshnd/gogetgithub
- Owner: vinayakshnd
- License: mit
- Created: 2021-01-10T03:38:59.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-11T15:45:57.000Z (almost 4 years ago)
- Last Synced: 2023-08-03T09:06:48.786Z (over 1 year ago)
- Topics: github-api, golang
- Language: Go
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gogetgithub
*gogetgithub* does the following things
1. Connects to Github
2. Connects to a repo
3. Creates a branch
4. Create a Pull request on the newly created branch for the repo by modifying some of the files## Localy compile the code
```
make build
```
## Build docker container```
make container
```
## Build and push docker container to docker repository```
make deploy
```
## Run docker container```
docker run -e CLIENT_ID= -e CLIENT_SECRET= -p 20080:8080 vinayakinfrac/gogetgithub:latest
```