KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
issue-tracker-bot
★ 16
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
boha
:
Crypto bounties, puzzles and challenges data library
dotfiles
:
No description available.
AlexsMobs-1.21.1
:
Alex's Mobs ported to Minecraft 1.21.1
Lofi
:
极简、纯粹、黑白风格的 Hexo 博客主题。
stock-daily-analyzer
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
issue-tracker-bot
?
Download (.md)
# Telegram GitHub Issue Bot Telegram bot written in Go that monitors a GitHub issues feed and notifies users about new issues matching their personal filters. Special thanks to [iedr/goodfirstissues](https://github.com/iedr/goodfirstissues/) for the issue data source. ## Features - **Personalized Filters**: - Filter by Repository Language (e.g., Go, Rust, TypeScript). - Filter by Minimum Stars. - Filter by Labels (e.g., "good first issue", "bug"). ## Project Structure ``` cmd/ bot/ # Main entry point internal/ bot/ # Telegram bot handlers and logic config/ # Configuration loading github/ # GitHub API client (fetching issues) logger/ # Structured logging models/ # Domain models service/ # Core business logic (polling, matching) storage/ # Database layer (SQLite) ``` ## Setup & Running 1. **Prerequisites**: - Go 1.21+ - GCC (for SQLite CGO) 2. **Configuration**: Copy `.env.example` to `.env` and fill in your details: ```bash cp .env.example .env ``` - `TELEGRAM_TOKEN`: Your Bot Token from @BotFather. 3. **Build and Run**: ```bash go mod tidy go build -o bot ./cmd/bot ./bot ``` 4. **Usage**: - Start a chat with the bot on Telegram. - Use the menu buttons to configure your filters. - Wait for notifications! ## Development - Run tests: ```bash go test ./... ```