-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (31 loc) · 816 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
name: 'mattermost-notification'
description: 'Send Message to Mattermost channel'
author: 'Andrii Komarnitskyi'
branding:
icon: 'message-square'
color: 'blue'
inputs:
webhook:
description: 'Mattermost incoming webhook URI'
required: true
json:
description: 'Full JSON payload (see Mattermost docs). Other params will be ignored'
required: false
text:
description: 'Message to be posted (Markdown formatted)'
required: false
channel:
description: 'Mattermost Channel (or @username) message to be posted in'
required: false
username:
description: 'Sender name'
required: false
icon_url:
description: 'Author icon url'
required: false
icon_emoji:
description: 'Author icon emoji'
required: false
runs:
using: 'node16'
main: 'dist/index.js'