Skip to content

Commit

Permalink
Update action.yml with Auth Token (#73)
Browse files Browse the repository at this point in the history
* Update action.yml with Auth Token

removed api key and api token and replaced with auth token

* remove env variable guidance
  • Loading branch information
sbrij001 authored Nov 14, 2024
1 parent e0a9d02 commit f15d243
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,20 @@ name: 'Twilio SMS'
author: 'Twilio Labs'
description: 'Send an SMS from GitHub Actions using Twilio Programmable SMS'
inputs:
fromPhoneNumber:
FROM_PHONE_NUMBER:
description: 'Phone number in your Twilio account to send the SMS from'
required: true
toPhoneNumber:
TO_PHONE_NUMBER:
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'
description: 'A Twilio Account SID.'
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'
TWILIO_AUTH_TOKEN:
description: 'A Twilio Auth Token.'
required: true
outputs:
messageSid:
Expand Down

0 comments on commit f15d243

Please sign in to comment.