sample
turbot/flowpipe-samples/send-slack-message
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Send Slack Message

Send a message to a Slack channel.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run send_slack_message.pipeline.send_slack_message \
--arg 'channel=<string>' \
--arg 'text=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = send_slack_message.pipeline.send_slack_message
args = {
channel = <string>
text = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
slack_conn
connection.slack
YesName for Slack connections to use. If not provided, the default connection will be used.connection.slack.default
channel
string
YesChannel, private group, or IM channel to send message to.-
text
string
YesThe formatted text to describe the content of the message.-

Outputs

NameDescription
post_message_check

Tags

recommended = true