Files
workflows/.github/workflows/notify.yaml
2024-12-23 14:28:27 +03:00

21 lines
518 B
YAML

name: notify
on:
workflow_call:
inputs:
result:
required: true
type: string
jobs:
notify:
runs-on: gpu
steps:
- uses: mattermost/action-mattermost-notify@master
with:
MATTERMOST_WEBHOOK_URL: ${{ secrets.webhook }}
PAYLOAD: |
{
"text": "${{ github.repository }} [build](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}) was ${{ inputs.status}} :white_check_mark:"
}