/whatsapp-push-notify-action

This is a github action which notifies the user when a push is made to the repository.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Whatsapp Push Notify Action 🚀

Version License: GNU GPLv3

A github action which sends a custom Whatsapp message using Twilio bot, forked from https://github.com/ishween/whatsapp-push-notify-action

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


        uses: khaled-ibtikar/whatsapp-push-notify-action@master
    

📝 License

Copyright © 2020 Ishween Kaur.
This project is GNU GPLv3 licensed.