Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 619 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 619 Bytes

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 }}