📲

GitHub ActionsのTwilio SMS ActionでSMSを送る

2022/01/16に公開

GitHub ActionsにTwilio Labが公式にリリースしてるTwilio SMS Actionがあったので試してみました。あっさり使えたのでメモ。

https://github.com/marketplace/actions/twilio-sms

GitHub Actionのワークフローを定義するyamlファイルに追加します。

.github/workflows/blank.yml
# This is a basic workflow to help you get started with Actions

name: Send Twilio SMS

# Controls when the workflow will run
on:
  # Triggers the workflow on push or pull request events but only for the main branch
  push:
    branches: [ main ]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "build"
  build:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - uses: actions/checkout@v2

      # Send SMS
      - name: 'Sending SMS Notification'
        uses: twilio-labs/actions-sms@v1
        with:
          fromPhoneNumber: '+1(123)4567890'
          toPhoneNumber: '+81(90)12345678'
          message: 'リポジトリ ${{github.repository}} のビルドが終わったよ!'
        env:
          TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }}
          TWILIO_API_KEY: ${{ secrets.TWILIO_API_KEY }}
          TWILIO_API_SECRET: ${{ secrets.TWILIO_API_SECRET }}

リポジトリのsecretsにTWILIO_ACCOUNT_SID、TWILIO_API_KEY、TWILIO_API_SECRETを追加します。

この3つがどこのものか対応関係を忘れがちなのでメモ。

TWILIO_ACCOUNT_SIDはダッシュボードに表示されているもの。

TWILIO_API_KEYはSettings->API KeysのSID。TWILIO_API_SECRETは同画面に表示されるSecret。Secretは一回しか表示されないので要注意です。

ワークフローが実行されるとSMSが送信されます。

実際に受信したもの。

Discussion