https://github.com/lnxpy/kavenegar-action
:zap: @kavenegar SMS notifier action (unofficial)
https://github.com/lnxpy/kavenegar-action
Last synced: about 1 year ago
JSON representation
:zap: @kavenegar SMS notifier action (unofficial)
- Host: GitHub
- URL: https://github.com/lnxpy/kavenegar-action
- Owner: lnxpy
- Created: 2023-08-01T13:40:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T12:11:59.000Z (almost 2 years ago)
- Last Synced: 2025-07-08T14:06:24.261Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Kavenegar Action
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.
```yml
name: Issue-opening Notifier
on:
issues:
types: [opened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sending SMS
uses: lnxpy/kavenegar_action@v2
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](https://docs.github.com/en/actions/security-guides/encrypted-secrets) about it. Generate `API_KEY` from your profile dashboard on [Kavenegar](https://kavenegar.com/).
### License
This action is licensed under some specific terms. Check [here](LICENSE) for more information.