library
turbot/slack
OverviewPipelines
0
Triggers
0
Variables
GitHub

Test Schedule Message

Test the schedule_message pipeline.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run slack.pipeline.test_schedule_message \
--arg 'channel=<string>' \
--arg 'post_at=<number>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = slack.pipeline.test_schedule_message
args = {
channel = <string>
post_at = <number>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
messagestringYesThe formatted text of the message to be published.Hello World from test_schedule_message pipeline.
channelstringYesChannel, private group, or IM channel to send message to. Must be an encoded ID.-
post_atnumberYesUnix EPOCH timestamp of time in future to send the message.-

Outputs

NameDescription
channelChannel name used in the test.
schedule_messageCheck for pipeline.schedule_message.
list_scheduled_messagesCheck for pipeline.list_scheduled_messages.
delete_scheduled_messageCheck for pipeline.delete_scheduled_message.