-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.json
More file actions
37 lines (37 loc) · 862 Bytes
/
config.sample.json
File metadata and controls
37 lines (37 loc) · 862 Bytes
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
{
"commit": {
"output": [
"${ticketId} || ${ticketTitle}",
"Ticket url: http://CUSTOM.DOMAIN/${ticketId}",
"Type: ${type}",
"Affected locales: ${locales.join(', ')}"
],
"questions": [
{
"id": "ticketId",
"label": "Ticket ID:"
},
{
"id": "ticketTitle",
"label": "Ticket title:"
},
{
"id": "testLink",
"label": "Want to create a test Link?",
"exec": "node -e 'console.log(`test command`)'",
"output": "https://CUSTOM.DOMAIN/${ticketId}-${ticketTitle}/"
},
{
"id": "type",
"label": "Type:",
"options": ["feature", "hotfix"]
},
{
"id": "locales",
"label": "Affected locales:",
"options": ["en-us", "es-us", "ja-jp"],
"multiple": true
}
]
}
}