Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pobyzaarif/git-webhook-receiver
github, gitlab, bitbucket webhook receiver
https://github.com/pobyzaarif/git-webhook-receiver
bitbucket-webhooks cicd circleci deployment drone-ci github-webhook gitlab-ci-cd gitlab-webhook jenkins
Last synced: about 1 month ago
JSON representation
github, gitlab, bitbucket webhook receiver
- Host: GitHub
- URL: https://github.com/pobyzaarif/git-webhook-receiver
- Owner: pobyzaarif
- License: gpl-3.0
- Created: 2023-06-15T15:56:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-29T09:39:41.000Z (about 1 year ago)
- Last Synced: 2024-10-01T06:24:07.072Z (about 2 months ago)
- Topics: bitbucket-webhooks, cicd, circleci, deployment, drone-ci, github-webhook, gitlab-ci-cd, gitlab-webhook, jenkins
- Language: Go
- Homepage:
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-webhook-receiver
![git-webhook-receiver](design.png)
## About
The idea of this project is to handle notifications from the git service (webhook from Github/Gitlab/Bitbucket) and make another command to be executed on our server. I know there are some tools such as Jenkins, CircleCI, GitLab CI/CD and Drone that also handle this job and maybe they have multiple features that do not cover with git-webhook-receiver. but it's ok, I only need something free to use, simple binary to run (that why I write this project in Go), unify the flow, lightweight, self-host, and easily use json config to map what changes in whitelisted branches and the trigger action.## Installation
```
$ cp config.json.example config.json
$ echo 'you can adjust the json config as you want' && nano config.json
$ go run app/main/main.goor if the binary is ready you can just do
$ ./git-webhook-receiver
```remember that config file should be in the similar folder if you running this app
## Other
- [Postman collection](https://documenter.getpostman.com/view/1806312/2s93si1VgX)