Skip to content

Tech-Squad-Community/github-whatsapp-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Github-to-Whatsapp-Push-Notifier

The whatsapp bot built using Twilio APIs which sends a Whatsapp message when code is pushed to a repository.

Whatsapp Push Notify Action 🚀

Version License: GNU GPLv3

Usage

  1. Create account in twilio here.
  2. From your twilio dashboard fetch Account Sid and Auth Token.
  3. To encrypt them, create new secrets in your repository named account_sid, auth_token, to_whatsapp_no and give it's value.
  4. Create a .github/workflows/whatsapp-push-notify-action.yml.
  5. Add the following properties to whatsapp-push-notify-action.yml file
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: whatsapp-notify
        id: whatsapp-notify
        env:
          account_sid: ${{ secrets.account_sid }}
          auth_token: ${{ secrets.auth_token }}
          to_whatsapp_no: ${{ secrets.to_whatsapp_no }}


        
      
      - name : Run
        run: |
          echo 'Start!'

Whatsapp Push Notifier Output

image

This project is GNU GPLv3 licensed.


About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages