deployer/docs/contrib/discord.md
Anton Medvedev 47a193f9af
Add docgen
2020-10-02 01:11:13 +03:00

2.6 KiB
Raw Blame History

discord

Source

Installing

Require discord recipe in your deploy.php file:

require 'contrib/discord.php';

Add hook on deploy:

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

Configuration

  • discord_channel Discord channel ID, required

  • discord_token Discord channel token, required

  • discord_notify_text notification message template, markdown supported, default:

    :information_source: **{{user}}** is deploying branch `{{branch}}` to _{{target}}_
    
  • discord_success_text success template, default:

    :white_check_mark: Branch `{{branch}}` deployed to _{{target}}_ successfully
    
  • discord_failure_text failure template, default:

    :no_entry_sign: Branch `{{branch}}` has failed to deploy to _{{target}}_
    
    

Usage

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

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

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

after('success', 'discord:notify:success');

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

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

Config

discord_webhook

Source

discord_notify_text

Source

Deploy messages

discord_success_text

Source

discord_failure_text

Source

discord_message

Source

The message

Tasks

discord_send_message

Source

Helpers

discord:test

Source

Tasks

discord:notify

Source

discord:notify:success

Source

discord:notify:failure

Source