cloudflare · Cloudflare Workers Docs
Workers GitHub SMS notifications using Twilio
A step-by-step tutorial for building a Cloudflare Worker that acts as a webhook receiver for GitHub activity and triggers SMS notifications via the Twilio API.
Derived skill
Files assembled from official documentation
Viewing SKILL.md
Workers GitHub SMS notifications using Twilio
A step-by-step tutorial for building a Cloudflare Worker that acts as a webhook receiver for GitHub activity and triggers SMS notifications via the Twilio API.
When To Use
Use when you need to implement a serverless webhook listener that processes GitHub repository events to send automated SMS alerts through Twilio.
Reference Files
| File | Contains | Use For |
|---|---|---|
SKILL.md | Entry point: scope, routing table, and workflow. | Start here. |
docs/workers-github-sms-notifications-using-twilio-index-workflow-guide.md | A tutorial guide for building a Cloudflare Worker that sends SMS notifications via Twilio when GitHub repository activity occurs. | Questions about a tutorial guide for building a Cloudflare Worker that sends SMS notifications via Twilio when GitHub repository acti... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g.text | Step-by-step instructions for initializing a Cloudflare Workers project to send GitHub notifications via Twilio using the npm create command. | Exact payloads, commands, or snippets shown in Step-by-step instructions for initializing a Cloudflare Workers project to send GitHub notifications via Twilio using... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-2.text | A step-by-step tutorial guide for setting up Cloudflare Workers to send SMS notifications via Twilio triggered by GitHub events. | Exact payloads, commands, or snippets shown in A step-by-step tutorial guide for setting up Cloudflare Workers to send SMS notifications via Twilio triggered by Git... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-3.text | The shell commands required to initialize the Cloudflare Workers project using the pnpm create cloudflare command. | Exact payloads, commands, or snippets shown in The shell commands required to initialize the Cloudflare Workers project using the pnpm create cloudflare command. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-4.text | A step-by-step tutorial guide for setting up Cloudflare Workers to send GitHub notifications via Twilio SMS. | Exact payloads, commands, or snippets shown in A step-by-step tutorial guide for setting up Cloudflare Workers to send GitHub notifications via Twilio SMS. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-5.text | A JavaScript worker script that receives GitHub webhooks and sends SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A JavaScript worker script that receives GitHub webhooks and sends SMS notifications via the Twilio API. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-6.text | A JavaScript worker script that receives GitHub webhooks and sends SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A JavaScript worker script that receives GitHub webhooks and sends SMS notifications via the Twilio API. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-7.text | A Cloudflare Workers script that validates GitHub webhook signatures and sends SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A Cloudflare Workers script that validates GitHub webhook signatures and sends SMS notifications via the Twilio API. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-8.text | A JavaScript implementation for a Cloudflare Worker that validates GitHub webhook signatures and sends SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A JavaScript implementation for a Cloudflare Worker that validates GitHub webhook signatures and sends SMS notificati... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-9.text | A list of wrangler CLI commands for configuring GitHub secret tokens in a Cloudflare Workers environment. | Exact payloads, commands, or snippets shown in A list of wrangler CLI commands for configuring GitHub secret tokens in a Cloudflare Workers environment. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-10.text | A configuration file containing compatibility flags and environment settings for a Cloudflare Workers tutorial that sends GitHub notifications via Twilio. | Exact payloads, commands, or snippets shown in A configuration file containing compatibility flags and environment settings for a Cloudflare Workers tutorial that s... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-11.text | The compatibility flags configuration required to enable Node.js compatibility for the Cloudflare Workers GitHub and Twilio integration tutorial. | Exact payloads, commands, or snippets shown in The compatibility flags configuration required to enable Node.js compatibility for the Cloudflare Workers GitHub and... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-t.text | A JavaScript function implementation for sending SMS notifications via the Twilio API within a Cloudflare Worker triggered by GitHub webhooks. | Exact payloads, commands, or snippets shown in A JavaScript function implementation for sending SMS notifications via the Twilio API within a Cloudflare Worker trig... |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-t-2.text | Commands for configuring Twilio authentication secrets in a Cloudflare Workers environment using Wrangler. | Exact payloads, commands, or snippets shown in Commands for configuring Twilio authentication secrets in a Cloudflare Workers environment using Wrangler. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-12.text | A Cloudflare Workers script that validates GitHub webhook signatures and sends SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A Cloudflare Workers script that validates GitHub webhook signatures and sends SMS notifications via the Twilio API. |
examples/workers-github-sms-notifications-using-twilio-index-cloudflare-workers-g-13.text | The wrangler deploy command used to deploy the Cloudflare Worker for GitHub SMS notifications via Twilio. | Exact payloads, commands, or snippets shown in The wrangler deploy command used to deploy the Cloudflare Worker for GitHub SMS notifications via Twilio. |
What This Skill Covers
- In this tutorial, you will learn to build an SMS notification system on Workers to receive updates on a GitHub repository. Your Worker will send you a text u...
- Main sections:
Tags,Before you start,Create a Worker project,Configure GitHub,Parsing the response.
Workflow
- Open the most relevant file under
docs/for the exact documented workflow and wording. - Open
schemas/files for exact structured contracts. - Open
examples/files for concrete requests, commands, snippets, and manifests. - Do not add behavior or configuration that is not present in the attached source files.
Canonical source: https://developers.cloudflare.com/workers/tutorials/github-sms-notifications-using-twilio/index.md
