forked from Numericas/matrix-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
32 lines (31 loc) · 971 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: matrix-action
description: A action which is publishes messages to a matrix room
branding:
icon: message-circle
color: purple
inputs:
room-id:
required: true
description: The ID of the room to which messages should be published
status:
required: true
description: The job status. use job.status here
user:
required: false
description: The matrix username used to authenticate agains the matrix server
password:
required: false
description: The password which should be used to authenticate against the matrix server.
access_token:
required: false
description: The access_token which should be used to authenticate against the matrix server.
server:
required: false
description: The matrix server which should be used. Defaults to matrix.org
default: matrix.org
message:
required: false
description: An additional message that should be send.
runs:
using: node12
main: dist/index.js