Sends a Slack notification. Simple as that.
Appearance on Slack :
This GitHub action is part of a list of Actions that are located in an other repo. Feel free to check it out : https://github.com/Ilshidur/actions.
- name: Slack notification
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_USERNAME: ThisIsMyUsername # Optional. (defaults to webhook app)
SLACK_CHANNEL: general #Â Optional. (defaults to webhook)
SLACK_AVATAR: repository #Â Optional. can be (repository, sender, an URL) (defaults to webhook app avatar)
uses: Ilshidur/[email protected]
with:
args: 'A new commit has been pushed.' #Â Optional
NOTICE : for stability purposes, it is recommended to use the action with an explicit commit SHA-1 :
- Version :
uses: "Ilshidur/[email protected]"
(→ link to the releases list : https://github.com/Ilshidur/action-slack/releases) - Commit SHA-1 :
uses: "Ilshidur/action-slack@702accad29cfcfe2ee4ebebb21a3883cc1ac9a39"
(→ link to the commits list : https://github.com/Ilshidur/action-slack/commits/master)
The argument is the message to display in the Slack notification.
Environment variables can be interpolated in the message using brackets ({{
and }}
) :
e.g.: Action called : {{ GITHUB_ACTION }}
Note : be careful to properly format your messages for Slack.
Event Payload data can also be interpolated in the message using brackets ({{
and }}
) with the EVENT_PAYLOAD
variable.
e.g.: Action called: {{ GITHUB_ACTION }} as {{ EVENT_PAYLOAD.pull_request.id }}
See the event types for valid payload informations.
args: "Hello, beautiful ! I ran a GitHub Action for you <3"
args: "I showed you my commit. Please respond."
SLACK_WEBHOOK
(required): the Slack webhook URL (see https://api.slack.com/incoming-webhooks).SLACK_USERNAME
(optional) : overrides username. Defaults to the Slack webhook bot name.SLACK_CHANNEL
(optional) : overrides the default channel of the webhook. If not set, the message will be sent to the channel associated to the webhook.SLACK_AVATAR
(optional) : overrides the message avatar. Can be'repository'
,'sender'
or an URL. If not set, the avatar of the Slack webhook's bot picture will be used.SLACK_CUSTOM_PAYLOAD
(advanced) : JSON string that sets full payload. instructions see CUSTOM_PAYLOAD
Developers, all you need is in the DEVELOPMENT.md file.
Christhopher Lion 💻 🤔 📖 |
Because open source is about everyone :
https://github.com/marketplace/actions/post-slack-message
https://github.com/marketplace/actions/slack-notify
https://github.com/marketplace/actions/slack-bot-action
https://github.com/marketplace/actions/slatify
https://github.com/marketplace/actions/slack-notify-build
https://github.com/marketplace/actions/action-slack
Don't forget to 🌟 Star 🌟 the repo if you like this GitHub Action !
Your feedback is appreciated