{"id":29109597,"url":"https://github.com/ci-space/notify-telegram","last_synced_at":"2026-05-09T13:02:58.736Z","repository":{"id":232457445,"uuid":"784398982","full_name":"ci-space/notify-telegram","owner":"ci-space","description":"Action for sending messages to telegram","archived":false,"fork":false,"pushed_at":"2025-06-26T19:53:45.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-26T20:31:14.159Z","etag":null,"topics":["ci","github-actions","go","telegram","telegram-bot"],"latest_commit_sha":null,"homepage":"","language":"Go","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/ci-space.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-04-09T19:16:06.000Z","updated_at":"2025-06-26T19:45:35.000Z","dependencies_parsed_at":"2024-04-09T23:53:57.792Z","dependency_job_id":"f8169b99-c991-45f0-a106-e6da24c9120a","html_url":"https://github.com/ci-space/notify-telegram","commit_stats":null,"previous_names":["artarts36/telegram-action","ci-space/notify-telegram"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ci-space/notify-telegram","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ci-space%2Fnotify-telegram","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ci-space%2Fnotify-telegram/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ci-space%2Fnotify-telegram/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ci-space%2Fnotify-telegram/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ci-space","download_url":"https://codeload.github.com/ci-space/notify-telegram/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ci-space%2Fnotify-telegram/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32452302,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["ci","github-actions","go","telegram","telegram-bot"],"created_at":"2025-06-29T07:03:43.701Z","updated_at":"2026-04-30T02:32:01.360Z","avatar_url":"https://github.com/ci-space.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# notify-telegram\n\nnotify-telegram - GitHub Action for sending messages to Telegram\n\n📦 [md2html](./pkg/md2html) 📦 [tgapi](./pkg/tgapi)\n\n\n**Features**\n- Convert Markdown to Telegram HTML\n- Inject links to issue trackers\n\n**Inputs**\n\n| Parameter             | Description                                                                                             | Required | Default value      |\n|-----------------------|---------------------------------------------------------------------------------------------------------|----------|--------------------|\n| **token**             | Token for Telegram bot                                                                                  | ✔️       | -                  |\n| **chat_id**           | ID of Telegram chat                                                                                     | ✔️       | -                  |\n| **chat_thread_id**    | ID of Telegram chat thread                                                                              |          | -                  |\n| **message**           | Text for message                                                                                        | ✔️       | -                  |\n| **host**              | Telegram host                                                                                           |          | `api.telegram.org` |\n| **convert_markdown**  | Flag that indicates whether markdown should be converted from **message**. Possible values: true, false |          | `false`            |\n| **issue_tracker_url** | URL to issue tracker. Example: https://my-project.atlassian.net/browse                                  |          | -                  |\n| **mode**              | Mode of send. Possible values: `create`, `update`                                                       |          | `create`           |\n| **message_id**        | ID of updating message. Required if mode is `update`                                                    |          | -                  |\n\n**Outputs**\n\n| Parameter      | Description        |\n|----------------|--------------------|\n| **message_id** | ID of sent message |\n\n## Usage\n\n### Send message on Release\n\n.github/workflows/release.yaml:\n\n```yaml\nname: Release\n\non:\n  release:\n    types:\n      - published\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Send notification\n        uses: ci-space/notify-telegram@v0.3.2\n        with:\n          token: ${{ secrets.TELEGRAM_TOKEN }}\n          chat_id: ${{ secrets.TELEGRAM_CHAT }}\n          chat_thread_id: ${{ secrets.TELEGRAM_CHAT_THREAD }}\n          convert_markdown: true\n          message: |\n            ${{ github.repository }} deployed on tag ${{ github.event.release.tag_name }}\n```\n\n### Get ID of sent message\n\n.github/workflows/release.yaml:\n\n```yaml\nname: Release\n\non:\n  release:\n    types:\n      - published\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Send notification\n        id: send\n        uses: ci-space/notify-telegram@v0.3.2\n        with:\n          # omit config\n\n      - name: Print message id\n        run: echo ${{ steps.send.outputs.message_id }}\n```\n\n\n### Create and update message\n\n.github/workflows/release.yaml:\n\n```yaml\nname: Release\n\non:\n  release:\n    types:\n      - published\n\njobs:\n  counter:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Send count 1\n        id: first\n        uses: ci-space/notify-telegram@v0.3.2\n        with:\n          token: ${{ secrets.TELEGRAM_TOKEN }}\n          chat_id: ${{ secrets.TELEGRAM_CHAT }}\n          message: |\n            Count: 1\n            \n      - name: Send count 2\n        uses: ci-space/notify-telegram@v0.3.2\n        with:\n          token: ${{ secrets.TELEGRAM_TOKEN }}\n          chat_id: ${{ secrets.TELEGRAM_CHAT }}\n          message_id: ${{ steps.first.outputs.message_id }}\n          mode: update\n          message: |\n            Count: 2\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fci-space%2Fnotify-telegram","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fci-space%2Fnotify-telegram","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fci-space%2Fnotify-telegram/lists"}