Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
mail

GitHub Action

Slack Messenger

v1.0.2

Slack Messenger

mail

Slack Messenger

Sends a slack message

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Slack Messenger

uses: joshmgross/send-slack-message@v1.0.2

Learn more about this action in joshmgross/send-slack-message

Choose a version

Send Slack Message

This is a GitHub action to send a Slack message using a Slack bot token.

Set up

See https://api.slack.com/bot-users for information on setting up and installing a Slack Bot.

Inputs

  • message: The Slack message to send

  • slack-token: The Slack bot user access token

  • channel: The Slack channel ID to send the message to

Example Usage

      - name: Post message
        uses: joshmgross/send-slack-message@main
        with:
          message: 'Hello world'
          channel: ${{ secrets.SLACK_CHANNEL_ID }}
          slack-token: ${{ secrets.SLACK_BOT_TOKEN }}