Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (24 loc) · 695 Bytes

rollbar.md

File metadata and controls

36 lines (24 loc) · 695 Bytes

Rollbar recipe

Installing

Install with composer

composer require deployer/recipes --dev

Add to your deploy.php

require 'recipe/rollbar.php';

Configuration

  • rollbar_token – access token to rollbar api
  • rollbar_comment – comment about deploy, default to
    set('rollbar_comment', '_{{user}}_ deploying `{{branch}}` to *{{target}}*');
  • rollbar_username – rollbar user name

Tasks

  • rollbar:notify – send message to rollbar

Usage

Since you should only notify Rollbar channel of a successful deployment, the rollbar:notify task should be executed right at the end.

after('deploy', 'rollbar:notify');