Releases: bitrise-steplib/steps-slack-message
2.7.0
- More customizable and better default Slack messages
- New inputs:
author_name
: A small text used to display the author's namebuttons
: A list of buttons attached to the message as link buttonschannel_on_error
: Target Slack channel, group or username if the build failedfields
: A list of fields to be displayed in a table inside the attachmentfooter
: Adds some brief text as footerfooter_icon
: Renders a small icon beside the footer textpretext
: An optional text that appears above the attachment blockpretext_on_error
: Pretext if the build failedtext
: Text of the message to send (Different from the attachment's message)text_on_error
: Text if the build failedthumb_url
: A URL to an image file that will be displayed as a thumbnailthumb_url_on_error
: Thumb URL if the build failedtimestamp
: Show the current time as part of the attachment's footer?title
: The title of the attachmenttitle_on_error
: The title of the attachment if the build failedtitle_link
: A URL that will hyperlink the title
2.6.5
2.6.4
2.6.3
2.6.2
2.6.1
Add option for Linkifying user name and channel name #22 - thanks @tomoima525 for the PR! ;)
2.5.0
Auto converting \
+ n
character sequences to the \n
newline escape sequence in the Message inputs, to ensure that \n
always means "newline" in the Slack message (instead of printing \n
in the message when the character sequence is \
+ n
instead of the ASCII 10 character represented by the \n
escape character).
Related discussion: https://discuss.bitrise.io/t/slack-step-does-not-treat-n-as-a-newline-when-message-generated-by-a-bash-script-step/1776
2.4.1
2.4.0
Embedded image / GIF support, thanks to the PR by @simonmartyr !
2.3.0
Thanks to @Bunk we discovered that there's indeed a Slack API option to enable markdown formatting support in attachments too, so we removed the formatting_mode
input, using only attachment
API mode, but markdown is now enabled for the text fields. This means colors+markdown formatting at the same time! 🚀
BREAKING: removed formatting_mode
, as there's no use for it anymore