-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 | ||
} | ||
} | ||
} |