deployer/docs/contrib/slack.md
Anton Medvedev 3216576680 Add docs
2021-09-26 15:25:58 +02:00

4.2 KiB
Raw Blame History

slack

Source

Installing

Add to Slack

Require slack recipe in your deploy.php file:

require 'contrib/slack.php';

Add hook on deploy:

before('deploy', 'slack:notify');

Configuration

  • slack_webhook slack incoming webhook url, required

    set('slack_webhook', 'https://hooks.slack.com/...');
    
  • slack_channel - channel to send notification to. The default is the channel configured in the webhook

  • slack_title the title of application, default {{application}}

  • slack_text notification message template, markdown supported

    set('slack_text', '_{{user}}_ deploying `{{branch}}` to *{{target}}*');
    
  • slack_success_text success template, default:

    set('slack_success_text', 'Deploy to *{{target}}* successful');
    
  • slack_failure_text failure template, default:

    set('slack_failure_text', 'Deploy to *{{target}}* failed');
    
  • slack_color color's attachment

  • slack_success_color success color's attachment

  • slack_failure_color failure color's attachment

Usage

If you want to notify only about beginning of deployment add this line only:

before('deploy', 'slack:notify');

If you want to notify about successful end of deployment add this too:

after('deploy:success', 'slack:notify:success');

If you want to notify about failed deployment add this too:

after('deploy:failed', 'slack:notify:failure');

Configuration

slack_channel

Source

Channel to publish to, when false the default channel the webhook will be used

false

slack_title

Source

Title of project

slack_text

Source

Deploy message

'_{{user}}_ deploying `{{target}}` to *{{hostname}}*'

slack_success_text

Source

'Deploy to *{{target}}* successful'

slack_failure_text

Source

'Deploy to *{{target}}* failed'

slack_rollback_text

Source

'_{{user}}_ rolled back changes on *{{target}}*'

slack_color

Source

Color of attachment

'#4d91f7'

slack_success_color

Source

'#00c100'

slack_failure_color

Source

'#ff0909'

slack_rollback_color

Source

'#eba211'

Tasks

slack:notify

Source

Notifying Slack.

slack:notify:success

Source

Notifying Slack about deploy finish.

slack:notify:failure

Source

Notifying Slack about deploy failure.

slack:notify:rollback

Source

Notifying Slack about rollback.