Skip to main content

Sending techniques

This GitHub Action offers three different techniques to send data to Slack:

Expected outputs

Each technique above outputs values that can be used as inputs in following steps of a GitHub workflow.

The following outputs are returned with each of the techniques:

OutputTypeDescription
timenumberThe Unix epoch time that the step completed.
okbooleanIf the request completed with success.
responsestringThe response from the request as stringified JSON.

While these outputs are returned with certain Slack API methods:

OutputTypeDescription
channel_idstringThe channel ID included in the response.
tsstringThe timestamp of the Slack event or message.
thread_tsstringThe timestamp of a parent Slack message with threaded replies.

Example responses

The following snippet shows how multiple steps can be chained together to create a Slack channel before posting a message:

- name: Create a new Slack channel for recent changes
id: conversation
uses: slackapi/slack-github-action@v2.0.0
with:
method: conversations.create
token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
name: pull-request-review-${{ github.sha }}
- name: Send the pull request link into the Slack channel
if: ${{ steps.conversation.outputs.ok }}
uses: slackapi/slack-github-action@v2.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
channel: ${{ steps.conversation.outputs.channel_id }}
text: "A PR was created <!date^${{ steps.conversation.outputs.time }}^{date_num} at {time_secs}|just now>: ${{ github.event.pull_request.html_url }}"