Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikitasavinov/messagebird-sms-action
Send an SMS using MessageBird
https://github.com/nikitasavinov/messagebird-sms-action
github-actions messagebird sms
Last synced: 2 months ago
JSON representation
Send an SMS using MessageBird
- Host: GitHub
- URL: https://github.com/nikitasavinov/messagebird-sms-action
- Owner: nikitasavinov
- License: mit
- Created: 2020-04-12T20:30:44.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T20:55:45.000Z (almost 5 years ago)
- Last Synced: 2024-10-06T05:18:02.973Z (3 months ago)
- Topics: github-actions, messagebird, sms
- Language: TypeScript
- Size: 3.35 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-actions - Send an SMS using MessageBird
- fucking-awesome-actions - Send an SMS using MessageBird
- awesome-workflows - Send an SMS using MessageBird
README
# MessageBird SMS GitHub Action
Send an SMS from GitHub Actions using MessageBird## Example usage
Set up your credentials as secrets in your repository settings using MESSAGEBIRD_API_KEYAdd the following to your workflow
```yml
- name: 'Send SMS'
uses: nikitasavinov/messagebird-sms-action@v1
with:
originator: '+3160000000'
recipients: '+3160000000,+3161111111'
body: 'TestMessage'
env:
MESSAGEBIRD_API_KEY: ${{ secrets.MESSAGEBIRD_API_KEY }}
```Please refer to the [official documentation](https://developers.messagebird.com/api/sms-messaging/#send-outbound-sms) for more information about `originator, recipients` and `body`