{"id":13533138,"url":"https://github.com/bharathvaj-ganesan/clockwork-sms-action","last_synced_at":"2026-04-16T17:36:33.049Z","repository":{"id":65159062,"uuid":"289715643","full_name":"bharathvaj-ganesan/clockwork-sms-action","owner":"bharathvaj-ganesan","description":"Send SMS notification from GitHub Actions using Clockworksms.","archived":false,"fork":false,"pushed_at":"2020-08-23T16:57:47.000Z","size":10,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-08-02T07:02:20.496Z","etag":null,"topics":["clockwork","clockwork-sms","github-actions","github-actions-javascript","javascript","sms","textanywhere"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bharathvaj-ganesan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-23T15:39:22.000Z","updated_at":"2024-08-02T07:02:20.496Z","dependencies_parsed_at":"2023-01-05T04:52:37.929Z","dependency_job_id":null,"html_url":"https://github.com/bharathvaj-ganesan/clockwork-sms-action","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"7056d077c8499e374e2496e631e9f363032d1270"},"previous_names":["bharathvaj1995/clockwork-sms-action"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bharathvaj-ganesan%2Fclockwork-sms-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bharathvaj-ganesan%2Fclockwork-sms-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bharathvaj-ganesan%2Fclockwork-sms-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bharathvaj-ganesan%2Fclockwork-sms-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bharathvaj-ganesan","download_url":"https://codeload.github.com/bharathvaj-ganesan/clockwork-sms-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241412715,"owners_count":19958973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clockwork","clockwork-sms","github-actions","github-actions-javascript","javascript","sms","textanywhere"],"created_at":"2024-08-01T07:01:16.874Z","updated_at":"2025-10-09T06:17:29.812Z","avatar_url":"https://github.com/bharathvaj-ganesan.png","language":"JavaScript","funding_links":[],"categories":["Community Resources"],"sub_categories":["Notifications and Messages"],"readme":"# Clockwork SMS Action\n\n\u003cimg src=\"./docs/images/logo.svg\" /\u003e\n\nSend an SMS from [GitHub Actions](https://github.com/features/actions) using [Clockworksms](https://www.clockworksms.com/).\n\n## Usage\n\n```workflow\nname: Push Notification Trigger\non:\n  push:\n    branches:\n      - master\njobs:\n  send-sms:\n    name: Send SMS\n    runs-on: ubuntu-latest\n    steps:\n    - name: Send SMS\n      uses: bharathvaj1995/clockwork-sms-action@master\n      env:\n        CLOCKWORK_API_KEY: ${{ secrets.CLOCKWORK_API_KEY }}\n      with:\n        to: 447000000000\n        content: \"New push on ${{ github.repository }} from ${{ github.actor }}\"\n```\n\nwill send SMS `New push on org-name/repo-name from your_username` to `447000000000`.\n\n## Secrets\n\nThis action uses the `CLOCKWORK_API_KEY` from secrets:\n\n### Getting an api key\n\nFirst, head over to clockwork and signup if you're not already signed up. Once signed up, log in to your clockwork account and add a new API Key (from the top menu choose Sending -\u003e API Keys).\n\n## Event Information\n\nAll of the information attached to an event is available in the `github.event` variable. To see the possible values, you can use the following step in your workflow:\n\n```yaml\n- run: echo '${{ toJson(github.event) }}'\n```\n\nYou can use this information in both the inputs for your action and to run the action conditionally.\n\nHere's an example of sending an SMS any time an issue is created with the urgent label:\n\n```workflow\nname: Issue Notification\non:\n  issues:\n    types: [labeled]\njobs:\n  send-sms:\n    name: Send SMS\n    runs-on: ubuntu-latest\n    steps:\n    - name: Send SMS\n      uses: bharathvaj1995/clockwork-sms-action@master\n      env:\n        CLOCKWORK_API_KEY: ${{ secrets.CLOCKWORK_API_KEY }}\n      with:\n        to: ${{ secrets.SECRET_NUMBER }}\n        content: \"This urgent issue needs your attention: ${{ github.event.issue.html_url }}\"\n      if: github.event.label.name == 'urgent'\n```\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nCopyright © 2020 [Bharathvaj Ganesan](https://github.com/bharathvaj1995).\u003cbr /\u003e\nThis project is [MIT](https://github.com/bharathvaj1995/clockwork-sms-action/blob/master/LICENSE) licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbharathvaj-ganesan%2Fclockwork-sms-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbharathvaj-ganesan%2Fclockwork-sms-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbharathvaj-ganesan%2Fclockwork-sms-action/lists"}