From a1891a1dccd3deca112ceea29bab58a59d29c584 Mon Sep 17 00:00:00 2001 From: Kreyren Date: Wed, 18 Mar 2020 11:23:58 +0100 Subject: [PATCH] Create sms.yml Stub for implementation to sent SMS about critical issues to relevant people --- .github/workflows/sms.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/sms.yml diff --git a/.github/workflows/sms.yml b/.github/workflows/sms.yml new file mode 100644 index 0000000..8b1c916 --- /dev/null +++ b/.github/workflows/sms.yml @@ -0,0 +1,10 @@ +- name: 'Sending SMS Notification' + uses: twilio-labs/actions-sms@v1 + with: + fromPhoneNumber: '+1(234)5678901' + toPhoneNumber: '+1(234)3334444' + message: 'Hello from Twilio' + env: + TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }} + TWILIO_API_KEY: ${{ secrets.TWILIO_API_KEY }} + TWILIO_API_SECRET: ${{ secrets.TWILIO_API_SECRET }}