
Acción de envío de SMS de Vonage
Una acción de GitHub para enviar un SMS.
GitHub
SMS
Action
Continuous Integration
Visión general
La acción Enviar SMS de Vonage te permite enviar SMS como parte de una GitHub Actions flujo de trabajo. Los argumentos pasados representan el destinatario y el contenido del mensaje.
Por ejemplo:
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"
]
args = "15551234567 New pull on $GITHUB_REPOSITORY from $GITHUB_ACTOR."
}
enviará una nueva solicitud a $GITHUB_REPOSITORY de $GITHUB_ACTOR a 15551234567.
Recursos
Ayuda
Este proyecto de código abierto está respaldado por el equipo de Vonage Product and Developer Experience en base al mejor esfuerzo; los problemas deben plantearse en el repositorio de GitHub.