Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 495 Bytes

README.md

File metadata and controls

30 lines (18 loc) · 495 Bytes

gh-actions-ntfy-slack

This action sends the job's status to slack.

Inputs

job-status

Required Pass in ${{job.status}}

slack-channel

Required The slack channel the message is sent to

slack-bot-token

Required The slack bot's token

Example usage

uses: aexeagmbh/gh-actions-ntfy-slack@main
with:
  job-status: ${{ job.status }}
  slack-channel: ${{ secrets.SLACK_CHANNEL }}
  slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
if: always()