cloudflare · Cloudflare Workers Docs
Workers GitHub SMS notifications using Twilio
A tutorial for building a serverless SMS notification system that uses Cloudflare Workers to receive GitHub webhooks and trigger text messages via the Twilio API.
Derived skill
Files assembled from official documentation
Viewing SKILL.md
Workers GitHub SMS notifications using Twilio
A tutorial for building a serverless SMS notification system that uses Cloudflare Workers to receive GitHub webhooks and trigger text messages via the Twilio API.
When To Use
Use when you need to implement a serverless webhook listener that triggers external SMS alerts based on repository activity.
Reference Files
| File | Contains | Use For |
|---|---|---|
SKILL.md | Entry point: scope, routing table, and workflow. | Start here. |
docs/workers-github-sms-notifications-using-twilio-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-cloudflare-workers-github-.text | A step-by-step guide and command sequence for setting up a Cloudflare Worker that sends SMS notifications via Twilio when triggered by GitHub webhooks. | Exact payloads, commands, or snippets shown in A step-by-step guide and command sequence for setting up a Cloudflare Worker that sends SMS notifications via Twilio... |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--2.text | A step-by-step text guide for setting up Cloudflare Workers to send GitHub notifications via Twilio SMS. | Exact payloads, commands, or snippets shown in A step-by-step text guide for setting up Cloudflare Workers to send GitHub notifications via Twilio SMS. |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--3.text | A step-by-step guide and command sequence for setting up a Cloudflare Worker that sends SMS notifications via Twilio when receiving GitHub webhooks. | Exact payloads, commands, or snippets shown in A step-by-step guide and command sequence for setting up a Cloudflare Worker that sends SMS notifications via Twilio... |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--4.text | A step-by-step guide and command sequence for setting up Cloudflare Workers to send GitHub notifications via Twilio SMS. | Exact payloads, commands, or snippets shown in A step-by-step guide and command sequence for setting up Cloudflare Workers to send GitHub notifications via Twilio SMS. |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--5.text | A JavaScript worker script that integrates GitHub webhooks with the Twilio API to send SMS notifications. | Exact payloads, commands, or snippets shown in A JavaScript worker script that integrates GitHub webhooks with the Twilio API to send SMS notifications. |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--6.text | A Cloudflare Workers script that receives GitHub webhooks and sends SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A Cloudflare Workers script that receives GitHub webhooks and sends SMS notifications via the Twilio API. |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--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-cloudflare-workers-github--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-cloudflare-workers-github--9.text | A list of terminal commands for configuring GitHub secrets and environment variables for a Cloudflare Workers project. | Exact payloads, commands, or snippets shown in A list of terminal commands for configuring GitHub secrets and environment variables for a Cloudflare Workers project. |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--10.text | A complete Cloudflare Workers script implementation that uses GitHub webhooks to trigger SMS notifications via the Twilio API. | Exact payloads, commands, or snippets shown in A complete Cloudflare Workers script implementation that uses GitHub webhooks to trigger SMS notifications via the Tw... |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--11.text | The compatibility flags configuration required to enable Node.js compatibility for the Cloudflare Workers GitHub to Twilio SMS notification tutorial. | Exact payloads, commands, or snippets shown in The compatibility flags configuration required to enable Node.js compatibility for the Cloudflare Workers GitHub to T... |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--12.text | A JavaScript function implementation for sending SMS notifications via the Twilio API within a Cloudflare Worker. | Exact payloads, commands, or snippets shown in A JavaScript function implementation for sending SMS notifications via the Twilio API within a Cloudflare Worker. |
examples/workers-github-sms-notifications-using-twilio-cloudflare-workers-github--13.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-cloudflare-workers-github--14.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-cloudflare-workers-github--15.text | The wrangler deploy command used to deploy the GitHub SMS notification worker. | Exact payloads, commands, or snippets shown in The wrangler deploy command used to deploy the GitHub SMS notification worker. |
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
