Closed medesko closed 8 years ago
You need to define your own custom messaging class per
https://github.com/phallstrom/slackistrano#customizing-the-messaging
with a class something like this:
module Slackistrano
class CustomMessaging < Messaging::Base
def icon_url
'http://some.site/path/to/image.png'
end
def username
'Medesko'
end
end
end
Hi @phallstrom,
Thank You for this amazing Job!
How can I set custom slack_username and slack_icon_url ?