afolson / nexmo-sms-action

Send SMS from GitHub Actions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nexmo SMS Action

Send an SMS from GitHub Actions using Nexmo. The passed in args represent the contents of the message.

Usage

The args represent the recipient and the contents of the message.

For example:

workflow "Send SMS On Push" {
  on = "push"
  resolves = ["notification"]
}

action "notification" {
    uses = "nexmo-community/nexmo-sms-action@master"
    secrets = [
        "NEXMO_API_KEY",
        "NEXMO_API_SECRET",
        "NEXMO_NUMBER",
        "TO_NUMBER"
    ]
    args = "15551234567 New pull on $GITHUB_REPOSITORY from $GITHUB_ACTOR."
}

will send New pull on $GITHUB_REPOSITORY from $GITHUB_ACTOR to 15551234567.

If you don't want to expose your recipient number, you can use secrets.

For example, a new secret called DEVOPS_PHONE could be used inside of args as follows:

workflow "Send SMS On Push" {
  on = "push"
  resolves = ["notification"]
}

action "notification" {
    uses = "nexmo-community/nexmo-sms-action@master"
    secrets = [
        "NEXMO_API_KEY",
        "NEXMO_API_SECRET",
        "NEXMO_NUMBER",
        "TO_NUMBER"
    ]
    args = "$DEVOPS_PHONE New pull on $GITHUB_REPOSITORY from $GITHUB_ACTOR."
}

This allows for you to reuse this action to send messages to various recipients.

Secrets

This action uses the following required secrets:

  • NEXMO_API_KEY - Your Nexmo API Key.
  • NEXMO_API_SECRET - Your Nexmo API Secret.
  • NEXMO_NUMBER - A number on your Nexmo account without any spaces or symbols. Example: 15551231234

About

Send SMS from GitHub Actions


Languages

Language:Dockerfile 76.5%Language:Shell 23.5%