Hipchat recipe
Installing
Install with composer
composer require deployer/recipes --devAdd to your deploy.php
require 'recipe/hipchat.php';Configuration
hipchat_token– Hipchat V1 auth tokenhipchat_room_id– Room ID or namehipchat_message– Deploy message, default is_{{user}}_ deploying{{branch}}to *{{target}}*hipchat_from– Default to targethipchat_color– Message color, default is green
Tasks
hipchat:notify– send message to hipchat
Usage
Since you should only notify Hipchat room of a successfull deployment, the deploy:hipchat task should be executed right at the end.
after('deploy', 'deploy:hipchat');