From f15d243ca6731f72fbbd6ad0a0f341a877f9d94d Mon Sep 17 00:00:00 2001 From: Shivani Brijmohan <36177801+sbrij001@users.noreply.github.com> Date: Thu, 14 Nov 2024 06:59:52 -0500 Subject: [PATCH] Update action.yml with Auth Token (#73) * Update action.yml with Auth Token removed api key and api token and replaced with auth token * remove env variable guidance --- action.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/action.yml b/action.yml index f8ae88ae..fbb93759 100644 --- a/action.yml +++ b/action.yml @@ -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: