-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
25 lines (25 loc) · 826 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "Telegram to GitHub Bot",
"description": "A Telegram bot to create GitHub issues simply by @mentioning.",
"repository": "https://github.com/H1D/telegram-to-github-bot",
"logo": "https://github.com/H1D/telegram-to-github-bot/assets/697625/2ae5fc94-f261-42dd-b6c9-37b3c35b876b",
"keywords": ["telegram", "bot", "github", "issues"],
"env": {
"TELEGRAM_BOT_TOKEN": {
"description": "Your Telegram bot token",
"required": true
},
"GITHUB_TOKEN": {
"description": "Your GitHub personal access token",
"required": true
},
"GH_REPO": {
"description": "The repository where issues will be created",
"required": true
},
"ISSUE_TAGS": {
"description": "Comma-separated list of tags to be added to the issue",
"required": false
}
}
}