forked from JackB1ack/telegram-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
69 lines (69 loc) · 1.64 KB
/
vss-extension.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"manifestVersion": 1,
"id": "telegram-notification-extension",
"name": "Telegram Notification",
"version": "0.1.1",
"publisher": "EvgenyChernyi",
"description": "Send custom notifications about your build/release process to Telegram",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"screenshots": [
{
"path": "Screenshots/main.png"
},
{
"path": "Screenshots/notification.png"
}
],
"galleryFlags": [
"Public"
],
"tags": [ "build", "release", "telegram", "bot", "messages", "notification" ],
"icons": {
"default": "images/index.png"
},
"scopes": [
"vso.work"
],
"categories": [
"Azure Pipelines"
],
"branding": {
"color": "rgb(4, 4, 5)",
"theme": "dark"
},
"content": {
"details": {
"path": "readme.md"
},
"license": {
"path": "LICENSE.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/JackB1ack/telegram-notification"
},
"files": [
{
"path": "SendTelegramNotification",
"addressable": true
}
],
"contributions": [
{
"id": "sample-telegram-task",
"type": "ms.vss-distributed-task.task",
"description": "Allows to send custom notification to Telegram chats",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "SendTelegramNotification"
}
}
]
}