Sending data as a message with a Slack incoming webhook URL
This technique uses this Action to post a message to a channel or direct message with incoming webhooks and a Slack app.
Incoming webhooks follow the same formatting patterns as other Slack messaging APIs. Posted messages can be as short as a single line of text, include additional interactivity with interactive components, or be formatted with Block Kit to build visual components.
Setup
Gather a Slack incoming webhook URL:
- Create a Slack app for your workspace or use an existing app.
- Add the
incoming-webhook
bot scope under OAuth & Permissions page on app settings. - Install the app to your workspace and select a channel to notify from the Install App page.
- Create additional webhooks from the Incoming Webhooks page.
- Add the generated incoming webhook URL as a repository secret called
SLACK_WEBHOOK_URL
. - Add this Action as a step to your GitHub workflow and provide an input payload to send as a message.
The webhook URL will resemble something like so:
https://hooks.slack.com/services/T0123456789/B1001010101/7IsoQTrixdUtE971O1xQTm4T
Usage
Add the collected webhook from above to a GitHub workflow and configure the step using mrkdwn
formatting values for a message or Block Kit blocks:
- name: Post a message in a channel
uses: slackapi/slack-github-action@v2.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
text: "*GitHub Action build result*: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
blocks:
- type: "section"
text:
type: "mrkdwn"
text: "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"