lnxpy / kavenegar-action

:zap: @kavenegar repository stats SMS notification (unofficial)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kavenegar Action

action-badge pyaction

Send SMS within your workflows.

Usage

You can use this action to send messages about the events happening to your repository. In this example, whenever someone opens a new issue on the repository, there will be an SMS sent to your phone.

name: Issue-opening Notifier
on:
  issues:
    types: [opened]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Sending SMS
        uses: lnxpy/kavenegar_action@v1
        with:
          api_key: ${{ secrets.API_KEY }}
          receptor: ${{ secrets.RECEPTOR }}
          message: ${{ github.event.issue.title }} is opened on your repository!

Keep in mind to set the secrets. Here is a quick guide about it. Generate API_KEY from your profile dashboard on Kavenegar.

License

This action is licensed under some specific terms. Check here for more information.

About

:zap: @kavenegar repository stats SMS notification (unofficial)

License:MIT License


Languages

Language:Python 61.0%Language:Dockerfile 39.0%