Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 565 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 565 Bytes

telegram-github-changes

Telegram bot for sending messages about github changes

Config

By file config.json with data

{
  "github_user": "my-github-user",
  "github_user_password": "my-github-pass",
  "repos": [
    {
      "name": "MY-ORG/my-repo"
    },
    {
      "name": "MY-ORG/my-repo-without-tags",
      "skip_if_refs_not_found": true
    }
  ],
  "telegram_bot_token": "my-telegram-token"
}

Docker compose

docker compose up -d

How to update

git pull --prune
docker compose down
docker compose up -d