-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
35 lines (34 loc) · 1.18 KB
/
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
name: 'seven.io SMS'
author: 'seven communications GmbH & Co. KG'
description: 'Send SMS through GitHub Actions via the seven.io SMS Gateway'
inputs:
apiKey:
description: 'A seven.io API Key. Alternatively stored in environment variable SEVEN_API_KEY'
required: true
delay:
description: 'Delayed dispatch at given time: Unix-Timestamp or format yyyy-mm-dd hh:ii'
foreign_id:
description: 'Foreign ID returned in callbacks. Allowed characters: a-z, A-Z, 0-9, .-_@'
from:
description: 'Sender ID; max 16 numeric or 11 alphanumeric characters'
label:
description: 'Custom label. Allowed characters: a-z, A-Z, 0-9, .-_@'
text:
description: 'The actual message content you want to send to the recipient(s)'
required: true
to:
description: 'Phone number(s) or contact(s) separated by comma to send the SMS to'
required: true
ttl:
description: 'Time To Live in minutes. Default is 2880'
udh:
description: 'User Data Header: If set and text contains Hexcode the sms gets sent as 8-bit binary'
outputs:
response:
description: 'The API response'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
color: 'green'
icon: 'message-square'