Create sms.yml

Stub for implementation to sent SMS about critical issues to relevant people
This commit is contained in:
Kreyren 2020-03-18 11:23:58 +01:00 committed by GitHub
parent d256ff6c67
commit a1891a1dcc
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

10
.github/workflows/sms.yml vendored Normal file

@ -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 }}