forked from twilio-labs/actions-sms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 927 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 927 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
31
name: 'Twilio SMS'
author: 'Twilio Labs'
description: 'Send an SMS from GitHub Actions using Twilio Programmable SMS'
inputs:
fromPhoneNumber:
description: 'Phone number in your Twilio account to send the SMS from'
required: true
toPhoneNumber:
description: 'Phone number to send the SMS to'
required: true
message:
description: 'The message you want to send'
required: true
TWILIO_ACCOUNT_SID:
description: 'A Twilio Account SID. Can alternatively be stored in environment'
required: true
TWILIO_API_KEY:
description: 'A Twilio API Key. Can alternatively be stored in environment'
required: true
TWILIO_API_SECRET:
description: 'A Twilio API Secret. Can alternatively be stored in environment'
required: true
outputs:
messageSid:
description: 'The Twilio Message SID'
runs:
using: 'node12'
main: 'main.js'
branding:
color: 'red'
icon: 'message-circle'