All Projects → athul → Statusoli

athul / Statusoli

Licence: mit
A GitHub Action to send a Telegram message regarding your Action Status and Repo Updates(push,issues,prs,stars,scheduled builds and comments)

Programming Languages

go
31211 projects - #10 most used programming language

TELEWIRE is a Faster implemetation of Statusoli. Check that out at https://github.com/athul/telewire


Statusoli 🤑

Rather than putting the tag, use the latest commit id to improve security
eg: uses: athul/[email protected]

Statusoli sends you on telegram about Repo Updates to your Telegram account by a Bot you can create.

Create a chatbot with botfather bot in telegram. Get your chat id by speaking to jsondumpbot in telegram.

Since it is your repo and it should only be limited to you. Thats why you need to give your chat id to the bot. You can either give your personal chat id or a channel chat id and add the bot to it.

You can add these details to the Repository Secrets by going to <repo>/settings/secrets/

Notifications

  • You can use the simple notifier at the master branch or the release tag like
    - name: Statusoli
      uses: athul/[email protected]
      if: always()
      with:
        chat: ${{ secrets.chat }}
        token: ${{ secrets.token }}
        status: ${{ job.status }}

The chat is the chat id/channel id and you can get that by talking to the json dump bot. The token is the bot's API token and you can create a bot by speaking to Botfather bot in Telegram.
The Output will be as

  • Push
  • Stars
  • PR Opened
  • Issues
  • Issue/ PR Comments

Don't forget to chat with your bot first by /start

Actions will only trigger on what you want to trigger. You might want to define all the triggers first. You can refer the workflow file of this repo for better guidance. or like this

name: Build and Notify
on:
  push:
  pull_request:
    types: [opened,closed]
  issues:
    types: [opened, closed, reopened]
  issue_comment:
    types: [created]
  watch:
    types: [started]
jobs:
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].