-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
34 lines (34 loc) · 886 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
33
34
---
name: 'Twilio Voice Call'
author: Yevhen Fabizhevskyi
description: 'This GitHub action sends voice call with the defined text.'
branding:
icon: phone-incoming
color: white
inputs:
twilio_account_sid:
description: 'Twilio Account SID.'
required: true
twilio_auth_token:
description: 'Twilio Auth token.'
required: true
text:
description: 'Text that will be send by voice call.'
required: true
from:
description: 'Phone number in your Twilio account to send the voice call from.'
required: true
to:
description: 'Phone number to send the voice call to.'
required: true
voice:
description: 'Call voice. Possible values: man, woman, alice.'
required: false
default: alice
twilio_log_level:
description: 'Twilio log level.'
required: false
default: 'debug'
runs:
using: 'node20'
main: 'dist/index.js'