forked from processone/xmpp-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (32 loc) · 964 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
# action.yml
name: 'XMPP Notifier'
description: 'Send notifications using XMPP'
author: 'ProcessOne'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
jid:
description: 'bot client login'
required: true
password:
description: 'bot client password'
required: true
server_host:
description: 'server domain for the bot client'
required: true
recipient:
description: "user or chat room that this action sends messages to"
required: true
recipient_is_room:
description: "is the correspondent passed as a parameter a chat room identifier or a single user"
required: false
server_port:
description: "server port for target notifications audience"
required: false
bot_alias:
description: "alias of the bot sending notifications in a chat room. Alias may be different from jid."
required: false
message:
description: "message to send to xmpp entities"
required: true