Skip to content

vbhv007/send-sms-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Send-SMS Github Actions

When a push occurs in the master branch, a SMS is sent to the user.

Screenshot_20200315-225248__01

Parameters

Make sure that these parameters are required as Github Secrets

Parameter Type Description
MOBILE_NO string Your mobile no
AWS_KEY_ID string Your aws key id
AWS_KEY_ACCESS string Your aws access key

Usage

name: When a push occurs in the master branch, a sms is sent to the user.
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: notify
        id: notify
        
        uses: vbhv007/send-sms-action@master
        with:
          mobile_no: ${{ secrets.MOBILE_NO }}
          aws_key_id: ${{ secrets.AWS_KEY_ID }}
          aws_key_access: ${{ secrets.AWS_KEY_ACCESS }}
      
      - name : Run
        run: |
          echo 'Run!'