Gitlab.com & GitHub WebHooks system with PHP and YAML.
Created by Florian Beer. Forked from Maxime Valette's webhooks.
- Clone the repo:
git clone git@github.com:florianbeer/webhooks - Install packages:
composer install - Copy the
config.php.distfile toconfig.phpand customize it - Add a virtual host pointing to
web/
All set! You just have to add a custom WebHook in the Service Hooks of your Gitlab.com or GitHub repositories, pointing to web/hooks.php.
The whole point of this script is that you can add custom hooks file specific to GitHub repositories.
It's a simple YAML file that looks like this:
emails:
- john@acmewebsite.com
master:
- /usr/local/bin/composer install
- php artisan migrate --env=production
So you can easily add or remove commands executed after every push.