Skip to content
message-circle

GitHub Action

Fast Mattermost Notifications

v0.1.6 Latest version

Fast Mattermost Notifications

message-circle

Fast Mattermost Notifications

Simple and fast mattermost notifier (running on bash)

Installation

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

              

- name: Fast Mattermost Notifications

uses: peppernode/[email protected]

Learn more about this action in peppernode/action-mattermost-notify

Choose a version

Mattermost notify action

Simple and fast bash script for mattermost notification

Action fields

Field Required Description
webhook_url true Mattermost webhook url
message true Message to send

Usage example

on: [ push ]

jobs:
  mattermost_notify:
    runs-on: ubuntu-latest
    
    steps:
      - name: Send notification to mattermost
        uses: peppernode/[email protected]
        with:
          webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
          message: "My message to send to mattermost :tada:"