-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaction.yml
37 lines (35 loc) · 1007 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: 'Mattermost'
description: 'Send message to your Mattermost instance'
author: Mattermost
branding:
icon: 'send'
color: 'blue'
# Define your inputs here.
inputs:
MATTERMOST_WEBHOOK_URL:
description: 'The Mattermost Incoming Webhook URL'
required: true
MATTERMOST_CHANNEL:
description: 'The Mattermost channel to sent the message'
required: false
MATTERMOST_USERNAME:
description: 'The Mattermost username shown in the webhook'
required: false
MATTERMOST_ICON_URL:
description: 'The Mattermost Icon URL for the webhook'
required: false
TEXT:
description: 'The text for the webhook message'
required: false
PAYLOAD:
description: 'The payload for the webhook'
required: false
PAYLOAD_FILENAME:
description: 'The payload file for the webhook'
required: false
default: mattermost.json
deprecationMessage:
This input is deprecated. Please migrate to TEXT or PAYLOAD variable
runs:
using: node20
main: dist/index.js