-
Notifications
You must be signed in to change notification settings - Fork 0
/
arvis-workflow.json
38 lines (38 loc) · 1.14 KB
/
arvis-workflow.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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"creator": "patrickkahl",
"name": "arvis-bitly",
"enabled": true,
"description": "Shorten URL with bit.ly",
"readme": "",
"version": "0.0.1",
"variables": {
"BITLY_ACCESS_TOKEN": ""
},
"webAddress": "https://github.com/arvis-workflows/arvis-bitly",
"defaultIcon": "icon.png",
"commands": [
{
"type": "keyword",
"command": "bitly",
"title": "Shorten URL with bit.ly",
"subtitle": "",
"argType": "no",
"actions": [
{
"type": "script",
"modifiers": "normal",
"script": "node index.js",
"actions": [
{
"type": "notification",
"modifiers": "normal",
"title": "Bitly job done",
"text": "{query}"
}
]
}
]
}
]
}