config.json | ||
Dockerfile | ||
example.sh | ||
go.mod | ||
go.sum | ||
gohookr.service | ||
main.go | ||
Makefile | ||
readme.md |
gohookr
A really simple webhook receiver, which listens at /webhooks/<webhook-name>
.
Default config path is /etc/gohookr.conf
and can be overriden by setting environment variable
CONFIG
.
Check below for an example configuration.
Installation
After you install go:
make
Signature Verification
Signature verificaiton is done using SHA256 HMACs.
You must set which HTTP header gohookr will receive a signature from using the SignatureHeader
key for each service.
You should also specify a shared secret in the Secret
key.
Disable Signature Verification
You can disable signature verification altogether by setting environment variable
NO_SIGNATURE_VERIFICATION
to true
.
Tests
gohookr can run test before running your script. Tests must be in the form of bash scripts. A non-zero return code is considered a fail and gohookr will run no further tests and will not deploy.
Tests are run in the order they're listed so any actions that need to be done before real tests are run can simply be put before the tests.
Example Config
Required config keys are ListenAddress
and Services
.
Requried keys per service are Script
, Secret
, SignatureHeader
.
An example config file can be found here but also below:
{
"ListenAddress": "127.0.0.1:8654",
"Services": {
"test": {
"Script": "./example.sh",
"Secret": "THISISVERYSECRET",
"SignatureHeader": "X-Gitea-Signature",
"Tests": [
{
"Command": "git",
"Arguments": [ "pull" ]
}
]
}
}
}