forked from s3krit/Matrix-Message
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 769 Bytes
/
action.yml
File metadata and controls
30 lines (30 loc) · 769 Bytes
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
name: matrix-msg
description: Send a message with subject to a matrix channel
author: Ola Bini (ola@olabini.se)
inputs:
server:
description: "Matrix server hostname"
default: "matrix.org"
required: false
room_id:
description: "Matrix room ID, specified in channels advanced settings"
default: ""
required: true
access_token:
description: "Access token required to send to matrix server"
default: ""
required: true
message:
description: "Message to send in markdown or html format"
default: ""
required: true
subject:
description: "Subject of message in plaintext format"
default: ""
required: false
runs:
using: docker
image: 'Dockerfile'
branding:
icon: 'message-square'
color: 'gray-dark'